码迷,mamicode.com
首页 > 其他好文 > 详细

PlaceHolder(每日Flutter 小部件)

时间:2020-03-23 17:05:47      阅读:163      评论:0      收藏:0      [点我收藏+]

标签:material   ack   package   contex   pre   build   hold   end   设置   

占位控件

color: Colors.blue, // 设置占位符颜色 defalutBlue Grey 70
strokeWidth: 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, //设置占位符高度
    );
  }
}

 

技术图片

 

 







PlaceHolder(每日Flutter 小部件)

标签:material   ack   package   contex   pre   build   hold   end   设置   

原文地址:https://www.cnblogs.com/wjw334/p/12552908.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!