我是靠谱客的博主 顺利眼睛,这篇文章主要介绍Flutter布局模型之层叠定位,现在分享给大家,希望可以做个参考。

Stack即层叠布局控件,能够将子控件层叠排列。

Stack控件的每一个子控件都是定位或不定位,定位的子控件是被Positioned控件包裹的。Stack控件本身包含所有不定位的子控件,其根据alignment定位(默认为左上角)。然后根据定位的子控件的top、right、bottom和left属性将它们放置在Stack控件上。

复制代码
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
import 'package:flutter/material.dart'; class LayoutDemo extends StatelessWidget { @override Widget build(BuildContext context) { return new Scaffold( appBar: new AppBar( title: new Text('层叠定位布局'), ), body:new Center( child: new Stack( children: <Widget>[ new Image.network('http://img2.cxtuku.com/00/13/12/s97783873391.jpg'), new Positioned( left: 35.0, right: 35.0, top: 45.0, child: new Text( 'Whatever is worth doing is worth doing well. ๑•ิ.•ั๑', style: new TextStyle( fontSize: 20.0, fontFamily: 'serif', ), ), ), ] ), ), ); } } void main() { runApp( new MaterialApp( title: 'Flutter教程', home: new LayoutDemo(), ), ); }

以上就是本文的全部内容,希望对大家的学习有所帮助,也希望大家多多支持靠谱客。

最后

以上就是顺利眼睛最近收集整理的关于Flutter布局模型之层叠定位的全部内容,更多相关Flutter布局模型之层叠定位内容请搜索靠谱客的其他文章。

本图文内容来源于网友提供,作为学习参考使用,或来自网络收集整理,版权属于原作者所有。
点赞(105)

评论列表共有 0 条评论

立即
投稿
返回
顶部