본문 바로가기
반응형

flutter66

[flutter][firebase] [core/no-app] No Firebase App '[DEFAULT]' has been created - call Firebase.initializeApp() 오류 해결방법 [flutter][firebase] [core/no-app] No Firebase App '[DEFAULT]' has been created - call Firebase.initializeApp() 오류 해결방법 void main() async { WidgetsFlutterBinding.ensureInitialized(); await Firebase.initializeApp(); 위 코드를 적용하자. firebase를 사용하기전에 위 코드처럼 초기화 작업을 진행해주어야한다. 필자는 firebase관련 플러그인들의 버전을 업그레이드하다가 발생하여 이와 같이 해결함. https://stackoverflow.com/questions/67429742/error-core-no-app-no-firebase-app-.. 2021. 11. 2.
[Flutter][Dart] Increasing/Down/Round Decimal, Fixing the length of the decimal point string (소수점 올림/내림/반올림, 문자열의 소수점 길이 고정) [Flutter][Dart] Increasing/Down/Round Decimal, Fixing the length of the decimal point string [플러터][다트] 소수점 올림/내림/반올림, 문자열의 소수점 길이 고정 소수점(double형) 값을 가공하고 처리할 때 특정 소수점 자리수에서 잘라내고 싶을 때가 있습니다. 이 때 참고하기 위해 간략히 정리하겠습니다. 아래 예시는 store라는 클래스 인스턴스가 있고, 이 인스턴스의 rating을 현재 유저의 상호작용으로 인해 추가된 평가를 업데이트하고자 하는 상황입니다. 평점이 4.333333333... 처럼 길어지면 가독성이 떨어지겠지요. 그 때문에 소수점을 올리거나 내리거나 반올림하는 것이 좋아보입니다. (When processing .. 2021. 11. 1.
[flutter] Copying a list (deep copy) (리스트를 복사하기(깊은 복사)) [flutter] Copying a list (deep copy) (리스트를 복사하기(깊은 복사)) List.from을 이용해서 복사하면 깊은 복사가 이루어진다. [English](Copying using List.from makes a deep copy.) this.reviews = List.from(reviews); https://stackoverflow.com/questions/63091889/flutter-firebase-get-array-from-firestore-and-assign-it-to-a-list flutter firebase get array from Firestore and assign it to a list I have a collection in Firestore. It has .. 2021. 11. 1.
[flutter] How to adjust the height of the Grid View widget(그리드 뷰 위젯 높이 조절하는 방법) [flutter]How to adjust the height of the Grid View widget(그리드 뷰 위젯 높이 조절하는 방법)GridView.count의 childAspectRatio를 설정하면 된다. (Set the childAspectRatio of GridView.count.)Widget build(BuildContext context) {    var size = MediaQuery.of(context).size;    final double itemHeight = (size.height - kToolbarHeight - 24) / 2;    final double itemWidth = size.width / 2;    return new Scaffold(      appBar: n.. 2021. 10. 31.
반응형