android 如何在抖动屏幕的特定区域内创建列表

iq3niunx  于 2023-06-20  发布在  Android
关注(0)|答案(3)|浏览(189)

我是Flutter开发的新手,在屏幕的页眉和页脚区域创建可滚动列表时遇到了麻烦。页眉和页脚数据将是固定的,而列表将是可滚动的。我已经包括了我试图实现的设计的示例图像:

屏幕标题将固定,然后是屏幕顶部的文本1、2、3和4。之后,将有一个可滚动的列表,其中可以包含任何数量的数据。最后,还有一个页脚区域的一些文本,也将固定在屏幕的底部。
先谢谢你了。

92vpleto

92vpleto1#

对于给定的设计,您可以参考以下代码:

  1. import 'package:flutter/material.dart';
  2. class ScreenDesign extends StatefulWidget {
  3. const ScreenDesign({Key? key}) : super(key: key);
  4. @override
  5. State<ScreenDesign> createState() => _ScreenDesignState();
  6. }
  7. class _ScreenDesignState extends State<ScreenDesign> {
  8. @override
  9. Widget build(BuildContext context) {
  10. return Scaffold(
  11. appBar: AppBar(
  12. centerTitle: true,
  13. title: const Text(
  14. 'Tittle',
  15. ),
  16. ),
  17. body: Column(children: [
  18. _headerWidgets(),
  19. _listViewWidget([
  20. 'List Item 1',
  21. 'List Item 2',
  22. 'List Item 3',
  23. 'List Item 4',
  24. 'List Item 5',
  25. 'List Item 6',
  26. 'List Item 7',
  27. 'List Item 8',
  28. 'List Item 9',
  29. 'List Item 10',
  30. 'List Item 11',
  31. 'List Item 12',
  32. 'List Item 13',
  33. 'List Item 14',
  34. 'List Item 15',
  35. ]),
  36. _footerWidgets()
  37. ]),
  38. );
  39. }
  40. Widget _headerWidgets() {
  41. return const Expanded(
  42. child: Column(
  43. children: [
  44. Expanded(
  45. child: Row(
  46. mainAxisAlignment: MainAxisAlignment.spaceEvenly,
  47. children: [
  48. Text('Text 1'),
  49. Text('Text 2'),
  50. ],
  51. ),
  52. ),
  53. Expanded(
  54. child: Row(
  55. mainAxisAlignment: MainAxisAlignment.spaceEvenly,
  56. children: [
  57. Text('Text 3'),
  58. Text('Text 4'),
  59. ],
  60. ),
  61. ),
  62. ],
  63. ),
  64. );
  65. }
  66. Widget _listViewWidget(List<String> dataList) {
  67. return Expanded(
  68. flex: 6,
  69. child: ListView.builder(
  70. shrinkWrap: true,
  71. itemCount: dataList.length,
  72. itemBuilder: (context, index) => ListTile(
  73. title: Text(dataList[index]),
  74. )),
  75. );
  76. }
  77. Widget _footerWidgets() {
  78. return const Expanded(
  79. child: Row(
  80. mainAxisAlignment: MainAxisAlignment.spaceEvenly,
  81. children: [
  82. Text('Text 5'),
  83. Text('Text 6'),
  84. Text('Text 7'),
  85. ],
  86. ),
  87. );
  88. }
  89. }

在这里,如果你想改变页眉,页脚或listView的大小,你可以在扩展的小部件中添加flex,就像我给 Package listView的扩展小部件一样。
如果你想让页脚留在屏幕底部,而listView数据在页脚后面,那么你只需要从名为bottomSheet的scaffold属性返回_footerWidgets。

展开查看全部
iibxawm4

iibxawm42#

试试下面的代码希望对你有帮助。参考我在下面的代码中使用过的小部件-ExpandedColumnRowbasics widgets

  1. class ListPage extends StatelessWidget {
  2. const ListPage({Key? key}) : super(key: key);
  3. @override
  4. Widget build(BuildContext context) {
  5. List dataList = [
  6. 'List Item 1',
  7. 'List Item 2',
  8. 'List Item 3',
  9. 'List Item 4',
  10. 'List Item 5',
  11. 'List Item 6',
  12. 'List Item 7',
  13. 'List Item 8',
  14. 'List Item 9',
  15. 'List Item 10',
  16. ];
  17. return Scaffold(
  18. appBar: AppBar(
  19. title: const Text('Screen Title'),
  20. centerTitle: true,
  21. ),
  22. body: Column(
  23. children: [
  24. Expanded(
  25. child: Container(
  26. color: Colors.yellow.shade300,
  27. child: const Column(
  28. children: [
  29. Expanded(
  30. child: Row(
  31. mainAxisAlignment: MainAxisAlignment.spaceEvenly,
  32. children: [
  33. Text('Text 1'),
  34. Text('Text 2'),
  35. ],
  36. ),
  37. ),
  38. Expanded(
  39. child: Row(
  40. mainAxisAlignment: MainAxisAlignment.spaceEvenly,
  41. children: [
  42. Text('Text 3'),
  43. Text('Text 4'),
  44. ],
  45. ),
  46. ),
  47. ],
  48. ),
  49. ),
  50. ),
  51. Expanded(
  52. flex: 5,
  53. child: ListView.builder(
  54. shrinkWrap: true,
  55. itemCount: dataList.length,
  56. itemBuilder: (context, index) => Padding(
  57. padding: const EdgeInsets.all(12.0),
  58. child: Container(
  59. decoration: BoxDecoration(
  60. borderRadius: BorderRadius.circular(5),
  61. border: Border.all(color: Colors.black)),
  62. child: ListTile(
  63. title: Text(
  64. dataList[index],
  65. textAlign: TextAlign.center,
  66. ),
  67. ),
  68. )),
  69. ),
  70. ),
  71. Expanded(
  72. child: Container(
  73. color: Colors.orange.shade300,
  74. child: const Row(
  75. mainAxisAlignment: MainAxisAlignment.spaceEvenly,
  76. children: [
  77. Text('Text 5'),
  78. Text('Text 6'),
  79. Text('Text 7'),
  80. ],
  81. ),
  82. ),
  83. )
  84. ],
  85. ),
  86. );
  87. }
  88. }

结果屏幕-> x1c 0d1x

展开查看全部
z3yyvxxp

z3yyvxxp3#

您可以尝试这个解决方案的基本,但您可以自定义它的方式你想要的

  1. import 'package:flutter/material.dart';
  2. class TestPage extends StatelessWidget {
  3. const TestPage({Key? key}) : super(key: key);
  4. @override
  5. Widget build(BuildContext context) {
  6. return Scaffold(
  7. appBar: AppBar(
  8. centerTitle: true,
  9. title: Text("Title"),
  10. backgroundColor: Colors.blueAccent,
  11. toolbarHeight: MediaQuery.of(context).size.height * .075,
  12. ),
  13. body: Column(
  14. children: [
  15. Container(
  16. width: MediaQuery.of(context).size.width,
  17. height: MediaQuery.of(context).size.height * .2,
  18. decoration: BoxDecoration(color: Colors.amber),
  19. child: Row(
  20. mainAxisAlignment: MainAxisAlignment.spaceEvenly,
  21. children: [
  22. Column(
  23. mainAxisAlignment: MainAxisAlignment.spaceEvenly,
  24. children: [
  25. Text("Text1"),
  26. Text("Text2"),
  27. ],
  28. ),
  29. Column(
  30. mainAxisAlignment: MainAxisAlignment.spaceEvenly,
  31. children: [
  32. Text("Text3"),
  33. Text("Text4"),
  34. ],
  35. ),
  36. ],
  37. ),
  38. ),
  39. Container(
  40. width: MediaQuery.of(context).size.width,
  41. height: MediaQuery.of(context).size.height * .475,
  42. decoration: BoxDecoration(color: Colors.grey),
  43. child: ListView.builder(
  44. itemCount: 10,
  45. physics: const ClampingScrollPhysics(),
  46. itemBuilder: (BuildContext context, int index) {
  47. return Column(
  48. mainAxisAlignment: MainAxisAlignment.center,
  49. children: [
  50. const SizedBox(
  51. height: 15,
  52. ),
  53. Center(
  54. child: Container(
  55. width: MediaQuery.of(context).size.width * .75,
  56. height: 70,
  57. decoration: BoxDecoration(
  58. border: Border.all(
  59. color: Colors.black,
  60. width: 1,
  61. ),
  62. borderRadius: BorderRadius.circular(4),
  63. ),
  64. child: Text(
  65. "List view item ${index + 1}",
  66. style: TextStyle(
  67. fontSize: 20,
  68. ),
  69. textAlign: TextAlign.center,
  70. ),
  71. )),
  72. const SizedBox(
  73. height: 15,
  74. ),
  75. ],
  76. );
  77. })),
  78. Container(
  79. width: MediaQuery.of(context).size.width,
  80. height: MediaQuery.of(context).size.height * .15,
  81. decoration: BoxDecoration(color: Colors.amber),
  82. child: Row(
  83. mainAxisAlignment: MainAxisAlignment.spaceEvenly,
  84. children: [
  85. Text("Text1"),
  86. Text("Text2"),
  87. Text("Text3"),
  88. ],
  89. ),
  90. ),
  91. ],
  92. ),
  93. );
  94. }
  95. }
展开查看全部

相关问题