虎視眈々と

Flutter × Firebaseを研究するアプリエンジニア

2019-05-01から1ヶ月間の記事一覧

UICollectionView.reloadData() must be used from main thread onlyがでたとき

どうやらSwiftでreloadDataするときはメインスレッドでやらないといけないらしい 対処法は下記でいけた DispatchQueue.main.async { self.collctionView.reloadData() } (adsbygoogle = window.adsbygoogle || []).push({}); (adsbygoogle = window.adsbygoo…

FlutterでAppBarの背景色を透明にする

下記の方法で行けた body: Stack( children: <Widget>[ Container( //My container or any other widget color: Colors.blue, ), new Positioned( //Place it at the top, and not use the entire screen top: 0.0, left: 0.0, right: 0.0, child: AppBar(title: Tex</widget>…