flutter sizeBox设置具体尺寸
作者:
喜剧收尾_XWX | 来源:发表于
2020-08-28 23:11 被阅读0次import 'package:flutter/material.dart';
void main() => runApp(MyApp());
class MyApp extends StatelessWidget {
@override
Widget build(BuildContext context) {
// TODO: implement build
return MaterialApp(
title: "sizeBox设置具体尺寸",
home: Scaffold(
appBar: AppBar(
title: Text('sizeBox设置具体尺寸'),
),
body: SizedBox(
width: 300,
height: 300,
child: Card(
child: Text('邢伟新'),
),
)));
}
}
本文标题:flutter sizeBox设置具体尺寸
本文链接:https://www.haomeiwen.com/subject/rfiydktx.html
网友评论