Flutter基础widgets教程-SizedBox篇

举报
青年码农 发表于 2022/08/26 00:12:59 2022/08/26
【摘要】 1 SizedBox 两种用法:一是可用来设置两个widget之间的间距,二是可以用来限制子组件的大小 2 构造函数 SizedBox({ Key key, this.width, this.height, Widget child }) 3 常用属性 3.1 width:Siz...

1 SizedBox

两种用法:一是可用来设置两个widget之间的间距,二是可以用来限制子组件的大小

2 构造函数


   
  1. SizedBox({
  2. Key key,
  3. this.width,
  4. this.height,
  5. Widget child
  6. })

3 常用属性

3.1 width:SizedBox的宽

width: 250,
  

3.2 height:SizedBox的高

height: 250,
  

3.3 child:SizedBox的子widget

child: Text("内容"),
  

4.显示效果

3798b875e3b89178250a3be7c471dc79.png

5.代码


   
  1. import 'package:flutter/material.dart';
  2. import 'package:flutter/services.dart';
  3. import 'package:flutter_markdown/flutter_markdown.dart';
  4. // 字体适配
  5. import '../../utils/app_size.dart';
  6. class ListSizedBox extends StatelessWidget {
  7. @override
  8. Widget build(BuildContext context) {
  9. return DefaultTabController(
  10. length: 2,
  11. child: Scaffold(
  12. appBar: AppBar(
  13. title: Text('SizedBox'),
  14. backgroundColor: Color(0xFFfafcff),
  15. bottom: TabBar(labelColor: Color(0xff030303), tabs: [
  16. Tab(
  17. text: "效果",
  18. ),
  19. Tab(
  20. text: "属性",
  21. )
  22. ]),
  23. ),
  24. body: TabBarView(children: [
  25. Container(
  26. decoration: new BoxDecoration(
  27. color: new Color(0xffffffff),
  28. borderRadius: new BorderRadius.circular((AppSize.width(20))),
  29. ),
  30. child: ShowEffect()),
  31. Container(
  32. decoration: new BoxDecoration(
  33. color: new Color(0xffffffff),
  34. borderRadius: new BorderRadius.circular((AppSize.width(20))),
  35. ),
  36. child: ShowAttribute()),
  37. ]),
  38. ),
  39. );
  40. }
  41. }
  42. // 效果
  43. class ShowEffect extends StatelessWidget {
  44. @override
  45. Widget build(BuildContext context) {
  46. return Row(children: <Widget>[
  47. SizedBox(
  48. width: 150.0,
  49. height: 150.0,
  50. child: Container(
  51. margin: EdgeInsets.all(20.0),
  52. width: 200.0,
  53. height: 200.0,
  54. color: Colors.blue,
  55. ),
  56. ),
  57. SizedBox(
  58. width: 100.0,
  59. height: 100.0,
  60. child: Container(
  61. margin: EdgeInsets.all(20.0),
  62. width: 200.0,
  63. height: 200.0,
  64. color: Colors.yellow,
  65. ),
  66. ),
  67. SizedBox(
  68. width: 100.0,
  69. height: 100.0,
  70. child: Container(
  71. margin: EdgeInsets.all(20.0),
  72. width: 200.0,
  73. height: 200.0,
  74. color: Colors.red,
  75. ),
  76. )
  77. ]);
  78. }
  79. }
  80. // 属性
  81. class ShowAttribute extends StatelessWidget {
  82. @override
  83. Widget build(BuildContext context) {
  84. return Container(
  85. child: FutureBuilder(
  86. future: rootBundle.loadString('lib/markdown/sizedBox.md'),
  87. builder: (BuildContext context, AsyncSnapshot snapshot) {
  88. if (snapshot.hasData) {
  89. return Markdown(
  90. data: snapshot.data,
  91. selectable: true,
  92. );
  93. } else {
  94. return Center(
  95. child: Text("加载中..."),
  96. );
  97. }
  98. },
  99. ),
  100. );
  101. }
  102. }

此代码已共享到码云,已对60多种widget做演示及解释。一直更新中

https://gitee.com/nmgwap/flutter_app

文章来源: blog.csdn.net,作者:NMGWAP,版权归原作者所有,如需转载,请联系作者。

原文链接:blog.csdn.net/NMGWAP/article/details/125067322

【版权声明】本文为华为云社区用户转载文章,如果您发现本社区中有涉嫌抄袭的内容,欢迎发送邮件进行举报,并提供相关证据,一经查实,本社区将立刻删除涉嫌侵权内容,举报邮箱: cloudbbs@huaweicloud.com
  • 点赞
  • 收藏
  • 关注作者

评论(0

0/1000
抱歉,系统识别当前为高风险访问,暂不支持该操作

全部回复

上滑加载中

设置昵称

在此一键设置昵称,即可参与社区互动!

*长度不超过10个汉字或20个英文字符,设置后3个月内不可修改。

*长度不超过10个汉字或20个英文字符,设置后3个月内不可修改。