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