전체 글
-
Flutter TextField 위젯 Style 예시DEV/flutter (dart) 2023. 2. 8. 17:02
다양한 TextBox (TextInput) 예시 Sample ...(대충 위젯) return Scaffold( appBar: AppBar(title: Text('TextField Sample')), body: Container( width: double.infinity, height: double.infinity, padding: EdgeInsets.all(10), child: Column(children: [ TextField( decoration: InputDecoration( icon: Icon(Icons.star), hintText: 'Icon' ), ), TextField( decoration: InputDecoration( hintText: 'Border (Colors.green)', enab..
-
Flutter dart에서의 Null with !, ? 키워드 (Dart 문법 / Null safety)DEV/flutter (dart) 2023. 2. 8. 16:38
Null safety 많은 프로그래밍에서 사용하는 Null, 보통의 경우 변수에 아무 값이 없는 상태를 Null이라고 한다. 예상치 못한 곳에서 Null 값이 들어가는 경우가 많고 이 때문에 높은 비중으로 Null 에러가 발생한다. null safety가 적용된 코드는 null에 의한 에러를 runtime이 아닌 edit-time에서 체크한고 알려준다고 한다. https://velog.io/@giyeon/flutter-Null-safety [flutter] Null safety null safety 변수 내부에 아무 값이 들어있지 않은 상태를 null상태라고 표현합니다. 많은 프로그램에서 런타임 에러 중 가장 큰 비중을 차지하는 에러가 null 입니다. 그런 이유로 다양한 언어들이 nu velog.io ..
-
Flutter 연락처 추가 예시DEV/flutter (dart) 2023. 2. 8. 15:33
준비물 : 패키지 다운로드 및 권한요청 설정 (하단 링크 참조) https://seokbong.tistory.com/164 flutter 유저 앱 권한 요청 Manifest.xml 설정 pubspec.yaml AndroidManifest.xml 위 설정은 주소록 읽기 / 쓰기 예시이다. seokbong.tistory.com ref. https://pub.dev/documentation/contacts_service/latest/ contacts_service - Dart API docs contacts_service A Flutter plugin to access and manage the device's contacts. Usage To use this plugin, add contacts_servic..