728x90 반응형 Study/Flutter2 Flutter Today 값 받아오는 함수 날짜도 그렇지만 날짜에는 항상 원하는 Format을 지정해서 값을 받아와야 합니다.이럴때 사용하는 라이브러리는 아래와 같습니다.https://pub.dev/packages/intl intl | Dart packageContains code to deal with internationalized/localized messages, date and number formatting and parsing, bi-directional text, and other internationalization issues.pub.dev import 'package:intl/intl.dart';라이브러리를 선언하고 아래와 같이 사용을 하시면 오늘 날짜가 yyyy-MM-dd 형식으로 리턴이 됩니다.String getToday(.. 2024. 8. 24. [flutter] Bottom Overflowed By ??? Pixels 오류 해결 해결방법Scaffold에 resizeToAvoidBottomPadding:false 를 추가하고 body를 SingleChildScrollView로 감싼다. home: Scaffold( resizeToAvoidBottomInset : false, appBar: AppBar( title: Text("Registration Page"), ), body: SingleChildScrollView( child: RegisterUserPage(), )), 출처 : https://dkswnkk.tistory.com/327 2024. 8. 24. 이전 1 다음 728x90 반응형