szintu 2020-03-23
占位控件color: Colors.blue, // 设置占位符颜色 defalutBlue Grey 70strokeWidth: 5, //设置画笔宽度fallbackHeight: 200, //设置占位符宽度fallbackWidth: 200, //设置占位符高度
import ‘package:flutter/material.dart‘;
class PlaceHolderWidget extends StatelessWidget {
@override
Widget build(BuildContext context) {
return Placeholder(
color: Colors.blue, // 设置占位符颜色 defalutBlue Grey 70
strokeWidth: 5, //设置画笔宽度
fallbackHeight: 200, //设置占位符宽度
fallbackWidth: 200, //设置占位符高度
);
}
}