example2 [Flutter] Dart 기본 문법 안녕하세요~ 챠니입니다! :) Dart에서 제공하는 개발문서를 기반으로 작성했습니다. https://dart.dev/codelabs/dart-cheatsheet 1. 문자열 보관 (String interpolation) 표현식: ${expression} String Result '${3 + 2}' '5' '${"word".toUpperCase()}' 'WORD' '$myObject' The value of myObject.toString() 2. Null관련 (Nullable variables) Dart에서는 Null이 될 수 있다고 명시하지 않는 한 Null값을 가질 수 없음 int a = null; // INVALID. int? a = null; // Valid. int? a; // The initi.. 2023. 10. 24. [Android][kotlin] material.bottomnavigation.BottomNavigationView 예제 안녕하세요~ 챠니입니다! :) 오늘은 "material.bottomnavigation.BottomNavigationView"사용법에 대해서 알아보도록 하겠습니다. 어렵지 않으니 천천히 따라오시면 되겠습니다! 설명보다는 코드 위주로 보여드리겠습니다. BottomNavigationView 예제 먼저 프로젝트 구조입니다. 필요하신 파일만 딱딱 가지고 사용하시면 되겠습니다. 다음은 BottomNavigationView를 만들기 위한 틀과 그 안에 들어가는 코드에 대해서 알아보겠습니다. BottomNavigationView 예제 코드 - 1 * menu_item_color.xml * string.xml BottomNavigationViewExam 공유 메인 추천 * menu_bottom_items.xml * ba.. 2023. 7. 13. 이전 1 다음