美文网首页
flutter sizeBox设置具体尺寸

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