gpt4 book ai didi

flutter - 如何在 Flutter 上使内容合理化为 flex-end,零底

转载 作者:行者123 更新时间:2023-12-04 01:33:23 25 4
gpt4 key购买 nike

我想让文本小部件在 Flutter 上变成 Flex End。

这里是我的代码:

 return MaterialApp(
title: 'Nature',
home: Scaffold(
appBar: AppBar(
title: Text('John Doe'),
),
body: Center(
child: Text('Copyright © 2020'),
),
),

我希望我的小部件文本位于底部。

最佳答案

  1. 选项一:屏幕上只有 Text()
return MaterialApp(
title: 'Nature',
home: Scaffold(
appBar: AppBar(
title: Text('John Doe'),
),
body: Align(
alignment: Alignment.bottomCenter,
child: Text('Copyright © 2020'),
),
),
);
  1. 选项二:Text() 在底部,数据在屏幕上
return MaterialApp(
title: 'Nature',
home: Scaffold(
appBar: AppBar(
title: Text('John Doe'),
),
body: ListView(
shrinkWrap: true,
children: [
Container(
height: MediaQuery.of(context).size.height - 50,
// Your Screen Data Here
),
Container(
height: 50,
child: Center(child: Text('Copyright © 2020')),
),
],
),
),
);

关于flutter - 如何在 Flutter 上使内容合理化为 flex-end,零底,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/60409239/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com