I have one button class.
I want to add this button class in container 2 times
and it will create one class.
Now i want to access all properties of both button
when i will user container class.
Thanks in advance
class BcmdMenu extends StatelessWidget {
final String text;
final VoidCallback onPressed;
final double width;
final Color color;
final controler;
const BcmdMenu({
Key key,
@required this.text,
@required this.onPressed,
this.width,
this.color = Colors.blue, // set default Values
this.controler,
}) : super(key: key);
@override
Widget build(BuildContext context) {
return Container(
width: width ?? 100,
child: TextButton(
child: Text(
'$text',
style: BlabelStyle(),
),
onPressed: onPressed,
),
);
}
}
与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…