【Flutter】PlatformViewの表示

実装手順 Dart PlatFormViewの呼び出し kotlin/Swift 表示するViewの作成 表示するViewのFactoryクラス作成 Pluginクラスの作成 Pluginの登録 Dart PlatFormViewの呼び出し class PlatformViewWidget extends StatelessWidget { const PlatformViewWidget({r…

build.gradle覚書き

Android開発時によく使うライブラリのbuild.gradleの定義 バージョン部分は要更新 projectRoot/build.gradle dependencies // navigation safe args classpath 'androidx.navigation:navigation-safe-args-gradle-plugin:2.5.3' plugins app/build.gradle 冒…

【Android】DialogFragmentの全画面表示

DialogFragmentを全画面表示し、起動元画面を背景に表示させる Androidでダイアログを全画面で表示したいときの実装方法 XML ルートのViewGroupの幅、高さをmatch_parentに設定する <androidx.constraintlayout.widget.ConstraintLayout android:layout_width="match_parent" android:layout_height="match_parent"> (以下省略) View 表示したいダイアログのonSt…</androidx.constraintlayout.widget.constraintlayout>