본문 바로가기
반응형

Development Solutions/Flutter & Dart67

[flutter] Dart Unhandled Exception: MissingPluginException(No implementation found for method loadBannerAd on channel plugins.flutter.io/google_mobile_ads) 에러 출력 내용 Dart Unhandled Exception: MissingPluginException(No implementation found for method loadBannerAd on channel plugins.flutter.io/google_mobile_ads) 대응책 flutter 자체 기능인 hot reload로는 해결되지 않습니다. 아래 절차대로 새로 빌드하면 해결되곤 합니다. 1. flutter clean 2. flutter run 2021. 11. 13.
[flutter] Fixing errors when you insert ListView with other widgets in the column (Column에 다른 위젯과 함께 ListView를 넣을때 오류 해결) [flutter] Fixing errors when you insert ListView with other widgets in the column (Column에 다른 위젯과 함께 ListView를 넣을때 오류 해결) 예를 들어, 아래와 같은 코드에서는 Column 안에 여러 위젯과 함께 ListView가 구현되어있다. (For example, In the code below, ListView is implemented with several widgets in the column.) @override Widget build(BuildContext context) { // TODO: implement build return new Scaffold( appBar: new AppBar( title: new .. 2021. 11. 6.
[flutter] how to change background color of flutter app. (앱의 배경 색상 변경 방법) [flutter] how to change background color of flutter app. (앱의 배경 색상 변경 방법) 앱의 가장 바깥이 되는 위젯을 Scaffold로 구축하고 아래와 같이 backgroundColor를 지정해주면 된다. [English](Build the most external widget of the app into Scaffold You can designate the background color as follows.) import 'package:flutter/material.dart'; void main() => runApp(new MyApp()); class MyApp extends StatelessWidget { @override Widget build(Bui.. 2021. 11. 5.
[flutter][firebase] How to sort data from snapshot taken from DB (DB에서 가져온 snapshot에서 데이터 정렬하는 방법) [flutter][firebase] How to sort data from snapshot taken from DB (DB에서 가져온 snapshot에서 데이터 정렬하는 방법) 앱을 만들때 firebase에서 데이터를 갖고 오고 싶다면 보통 FirebaseFirestore에서 인스턴스를 가져와 컬렉션, 도큐먼트에 접근한다. 이때 특정한 애트리뷰트에 대해 정렬하고 싶다면? 아래와 같이 orderBy를 사용하자. (If you want to get data from firebase when creating an app I usually get the instance from FirebaseFirestore Access to collections and documents. What if you want to .. 2021. 11. 4.
반응형