Welcome to ShenZhenJia Knowledge Sharing Community for programmer and developer-Open, Learning and Share
menu search
person
Welcome To Ask or Share your Answers For Others

Categories

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,
      ),
    );
  }
}


与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
thumb_up_alt 0 like thumb_down_alt 0 dislike
2.5k views
Welcome To Ask or Share your Answers For Others

1 Answer

等待大神答复

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
thumb_up_alt 0 like thumb_down_alt 0 dislike
Welcome to ShenZhenJia Knowledge Sharing Community for programmer and developer-Open, Learning and Share
...