Files
FlutterUnit/lib/views/widgets/StatelessWidget/Container/node1_base.dart
2020-05-03 23:05:53 +08:00

25 lines
672 B
Dart

/// create by 张风捷特烈 on 2020/4/25
/// contact me by email 1981462002@qq.com
/// 说明:
// {
// "widgetId": 1,
// "name": '可用于显示一个指定宽高的区域',
// "priority": 1,
// "subtitle": "【width】 : 宽 【int】\n"
// "【高】: 外边距 【int】\n"
// "【color】: 子组件 【Color】",
// }
import 'package:flutter/material.dart';
class CustomContainer extends StatelessWidget {
@override
Widget build(BuildContext context) {
return Container(
alignment: Alignment.topLeft,
width: 200,
height: 200 * 0.618,
color: Colors.red.withAlpha(88),
);
}
}