私がオススメするプログラミング教材です

【Flutter入門】showModalBottomSheetとkeyboardの位置を調整する方法

更新日:

記事の内容


この記事では、showModalBottomSheetとkeyboardの位置を調整する方法を紹介します。
具体的には、「 isScrollControlled: true」と「SingleChildScrollView」を使います。

実装前後の比較

実装前

実装後

実装方法

「isScrollControlled」を使って、「SingleChildScrollView」でwrapして調整します。

floatingActionButton: FloatingActionButton(
  backgroundColor: Colors.lightBlueAccent,
  child: Icon(Icons.add),
  onPressed: () {
    showModalBottomSheet(
      context: context,
      isScrollControlled: true,
      builder: (context) => SingleChildScrollView(
        child: Container(
            padding: EdgeInsets.only(
                bottom: MediaQuery.of(context).viewInsets.bottom),
            child: AddTaskScreen()),
      ),
    );
  },
),

DartとFlutterをより詳しく勉強したい人には、この記事がオススメです


SwiftでiOSアプリを開発したい人には、この記事がオススメです


KotlinでAndroidアプリを開発したい人には、この記事がオススメです


Gitをより詳しく勉強したい人には、この記事がオススメです


ゼロからWebエンジニアになりたい人には、この記事がオススメです


独学で実務っぽい経験を積みたい人には、この記事がオススメです

-Flutter, プログラミング

Copyright© プログラミング道場 , 2024 All Rights Reserved Powered by AFFINGER4.