前提・実現したいこと
ListViewの上にshowDialogを表示させる際、
showDialog表示中に背景となっているListViewをスクロールさせたいです。
しかし、公式を見ても、そのような設定を可能にする
パラメータがshowDialogには備わっていないように見えます。
掲題の実現方法を教えていただきたいです。
なお、下記ソースは、showDialog中に背景をスクロールできない状態のデモです。
以上です。
よろしくお願いいたします。
該当のソースコード
flutter
1import 'package:flutter/material.dart'; 2 3void main() { 4 runApp(MyApp()); 5} 6 7class MyApp extends StatelessWidget { 8 @override 9 Widget build(BuildContext context) { 10 return MaterialApp( 11 home: MyHome(), 12 ); 13 } 14} 15 16class MyHome extends StatelessWidget { 17 @override 18 Widget build(BuildContext context) { 19 var list = ["メッセージ", "メッセージ", "メッセージ", "メッセージ", "メッセージ",]; 20 return Scaffold( 21 appBar: AppBar( 22 title: const Text('ListView'), 23 ), 24 body: Column(children: <Widget>[ 25 TextButton(child: const Text('ボタン'), onPressed: () { 26 showDialog( 27 context: context, 28 builder: (_) { 29 return const AlertDialog( 30 title: Text("This is the title"), 31 ); 32 }, 33 ); 34 }), 35 Expanded(child: ListView.builder( 36 itemBuilder: (BuildContext context, int index) { 37 if (index >= list.length) { 38 list.addAll(["メッセージ","メッセージ","メッセージ","メッセージ",]); 39 } 40 return _messageItem(list[index]); 41 }, 42 )) 43 ]), 44 ); 45 } 46 47 Widget _messageItem(String title) { 48 return Container( 49 decoration: const BoxDecoration( 50 border: Border(bottom: BorderSide(width: 1.0, color: Colors.grey)) 51 ), 52 child: ListTile( 53 title: Text( 54 title, 55 style: const TextStyle( 56 color:Colors.black, 57 fontSize: 18.0 58 ), 59 ), 60 ), 61 ); 62 } 63}
補足情報(FW/ツールのバージョンなど)
記載のソースはdartpadで動作確認済みです。
回答1件
あなたの回答
tips
プレビュー
バッドをするには、ログインかつ
こちらの条件を満たす必要があります。
2021/12/05 13:25 編集