Files
FlutterUnit/lib/widget_system/widgets/StatelessWidget/FlutterLogo/node2_style.dart
2021-09-26 20:50:13 +08:00

36 lines
894 B
Dart

/// create by 张风捷特烈 on 2020-03-26
/// contact me by email 1981462002@qq.com
/// 说明:
// {
// "widgetId": 4,
// "priority": 2,
// "name": "样式用于显示文字",
// "subtitle": "【style】 : 样式-3种枚举 【FlutterLogoStyle】\n"
// "【textColor】: 文字颜色 【Color】",
// }
import 'package:flutter/material.dart';
class FlutterLogoWithText extends StatelessWidget {
final Map<FlutterLogoStyle,Color> data = {
FlutterLogoStyle.horizontal:Colors.blue,
FlutterLogoStyle.markOnly:Colors.red,
FlutterLogoStyle.stacked:Colors.green,
};
@override
Widget build(BuildContext context) {
return Wrap(
spacing: 20,
children: data.keys.map((FlutterLogoStyle style) => FlutterLogo(
size: 80,
style: style,
textColor: data[style]!,
))
.toList(),
);
}
}