标签:oid widget enter title 说明 tab 限制 aspect 参考
属性 | 说明 |
aspectRatio |
宽高比,最终可能不会根据这个值去布局,具体则要看综合因素,外层是否允许按照这种比率进行布局,这只是一个参考值。
|
child | 子组件 |
import ‘package:flutter/material.dart‘; void main() { runApp(MaterialApp( title: "AspectRatioWidget", home: MyApp(), )); } class MyApp extends StatelessWidget { @override Widget build(BuildContext context) { return Center( child: Container( width: 200, color: Colors.redAccent, child: AspectRatio( aspectRatio: 2.0/1.0, child: Container( color: Colors.green, ), ), ), ); } }
标签:oid widget enter title 说明 tab 限制 aspect 参考
原文地址:https://www.cnblogs.com/chichung/p/11994046.html