【自学Flutter】33 自定义Widget 的使用(组合)

文章介绍了如何在Flutter中创建一个可点击的CustomSquare组件,该组件带有提示框。同时提到了一份针对Android开发者的学习资料,包括基础知识、进阶课程和面试技巧,旨在帮助工程师系统提升技能并规划长远职业发展。
摘要由CSDN通过智能技术生成

class CustomSquare extends StatelessWidget {

final Color color;

final double width;

final double height;

final Text child;

CustomSquare({

this.color,

this.width,

this.height,

@required this.child,

});

@override

Widget build(BuildContext context) {

return Container(

width: width,

height: height,

color: color,

child: Builder(builder: (context){

return InkWell(

onTap: (){

Scaffold.of(context).showSnackBar(SnackBar(content: child));

},

);

}),

);

}

}

2.解释源代码

import ‘package:flutter/material.dart’;

void main() => runApp(MyApp());

class MyApp extends StatefulWidget {

@override

_MyAppState createState() => _MyAppState

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值