Welcome to OGeek Q&A Community for programmer and developer-Open, Learning and Share
Welcome To Ask or Share your Answers For Others

Categories

0 votes
165 views
in Technique[技术] by (71.8m points)

Create a class that extends another custom class in Flutter

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

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

1 Reply

0 votes
by (71.8m points)

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

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
OGeek|极客中国-欢迎来到极客的世界,一个免费开放的程序员编程交流平台!开放,进步,分享!让技术改变生活,让极客改变未来! Welcome to OGeek Q&A Community for programmer and developer-Open, Learning and Share
Click Here to Ask a Question

...