Merge branch 'fix' into alpha

This commit is contained in:
guozhigq
2023-10-01 11:46:44 +08:00

View File

@ -39,7 +39,8 @@ class _MediaPageState extends State<MediaPage>
Color primary = Theme.of(context).colorScheme.primary; Color primary = Theme.of(context).colorScheme.primary;
return Scaffold( return Scaffold(
appBar: AppBar(toolbarHeight: 30), appBar: AppBar(toolbarHeight: 30),
body: Column( body: SingleChildScrollView(
child: Column(
children: [ children: [
ListTile( ListTile(
leading: null, leading: null,
@ -79,6 +80,7 @@ class _MediaPageState extends State<MediaPage>
: const SizedBox()) : const SizedBox())
], ],
), ),
),
); );
} }
@ -136,7 +138,7 @@ class _MediaPageState extends State<MediaPage>
// const SizedBox(height: 10), // const SizedBox(height: 10),
SizedBox( SizedBox(
width: double.infinity, width: double.infinity,
height: 170 * MediaQuery.of(context).textScaleFactor, height: 200 * MediaQuery.of(context).textScaleFactor,
child: FutureBuilder( child: FutureBuilder(
future: _futureBuilderFuture, future: _futureBuilderFuture,
builder: (context, snapshot) { builder: (context, snapshot) {