フラミナル

考え方や調べたことを書き殴ります。IT技術系記事多め

Flutter

【Flutter/ios】cloud signing を利用したビルドがうまくいかない

この記事で扱う内容は結局、未解決です。ご注意ください。 誰かのヒントになれば。 やりたいこと Cloud Sigining を利用して Distributed Certificate や Provisioning Profile を管理することなく Flutter で ipa をビルドしたい。 構想 一番シンプルに考え…

【更新中】Flutter の Widget of the Week をすべてはっていく

自分の振り返り用。 リンクは youtube に飛びます。 機能名 コメント 一枚画像(https://www.youtube.com/watch?v=JSqUZFkRLr8&list=PLjxrf2q8roU23XGwz3Km7sQZFTdB996iG) AboutDialog ダイアログを表示する AlertDialog さまざまなアニメーションを設定でき…

【Flutter/Dart】イテレーターで副作用のある処理を呼んではいけない

Flutter/Dart学習中です。 Iterator の一つである where を見ていたところこの記載があったので咀嚼してみます。 Creates a new lazy Iterable with all elements that satisfy the predicate test. The matching elements have the same order in the retur…

【flutter】late 変数とは

dart.dev The late modifier has two use cases: Declaring a non-nullable variable that’s initialized after its declaration. Lazily initializing a variable. Often Dart’s control flow analysis can detect when a non-nullable variable is set to …

【Flutter/Dart】collection if と collection for が便利 (Control Flow Collection)

普段は Go を触ってるので Collection if / for が新鮮だったのでメモ。 Collections | Dart var nav = ['Home', 'Furniture', 'Plants', if (promoActive) 'Outlet']; これは promoActive が Outlet ならコレクションに追加。 var nav = [for (i = 0; i < 1…