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 created class Blabel that extends StatelessWidget. I want to extend it to Blabel1 , keeping all of its properties and adding some extra properties to it.

Let's say I would like to add textDirection property to the new class. How can I do it?

Here is the code of Blabel class that I have:

class Blabel extends StatelessWidget {
  final String text;
  final TextStyle style;
  Blabel({
    this.text,
    this.style,
  });
  @override
  Widget build(BuildContext context) {
    return Text(
      text,
      style: style ?? CtrBlblStyle(),
    );
  }
}

question from:https://stackoverflow.com/questions/65661106/create-a-class-that-extends-another-custom-class-in-flutter

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

1 Answer

I think this is something along the line of what you are looking for:

class Blabel1 extends Blabel {
  final TextDirection textDirection; // example of new property
  Blabel1({
    String text,
    TextStyle style,
    this.textDirection,
  }) : super(text: text, style: style);
  @override
  Widget build(BuildContext context) {
    // You can change the build method to change the UI from Blabe
    return Text(
      text,
      style: style ?? CtrBlblStyle(),
    );
  }
}

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