emolog

脳内メモです。

Flutter

Flutterでレイアウト調整の際に、Containerの枠に色をつける

メモです。 Container( # 色 decoration: BoxDecoration( color: Colors.white, border: Border.all(color: Colors.red)), width: width, height: gifHeight, child: Center( child: Image.asset('images/logo.png'), ), ),

Flutterで画像を表示する

Flutterで画像を表示する プロジェクト直下にimagesディレクトリを作成 pubspec.yamlを編集する flutter: # The following line ensures that the Material Icons font is # included with your application, so that you can use the icons in # the materi…

【Flutter】 クリップボードにコピーする

Flutterを最近プライベートで書いていて、クリップボードにコピーしたかったのでメモです。 組み込みライブラリであるっぽいのでそれを使います。 api.flutter.dev stackoverflow.com // クリップボードにコピーするメソッド void copyRoomLink() { final ur…

【Flutter】formとsubmitボタンを定義する

Flutterでフォームとsubmitとボタンを作成したかったのでメモです。 Widget build(BuildContext context) { final roomNameFocusNode = FocusNode(); final formState = GlobalKey<FormState>(); return Form( key: formState, child: Column( children: [ TextFormFiel</formstate>…

Flutterのローカル開発で、APIリクエストがSocketExceptionと怒られたときの対応

事象 APIリクエストには retrofit を使用している -ローカル環境に対してつないでいる、Andoridのエミュレーター リクエスト時に、SocketException: OS Error: Connection refused, errno = 111, address = localhost, port = 37922 みたいなエラーになる ロ…

FlutterでAndroidエミュレータが上がらなかったのでメモ

Flutterでandroidが上がらなかったのでメモ $ fvm flutter doctor Downloading android-arm-profile/darwin-x64 tools... 2.0s Downloading android-arm-release/darwin-x64 tools... 1.1s Downloading android-arm64-profile/darwin-x64 tools... 1.6s Down…