how to make tab in flutter on appbar code example

Example: flutter appbar actions with tabs

class MyStatefulWidget extends StatefulWidget{

  MyStatefulWidgetState createState() => MyStatefulWidgetState();

  static MyStatefulWidgetState of(BuildContext context){
    return (context.inheritFromWidgetOfExactType(_MyInheritedStateContainer) as _MyInheritedStateContainer).data;
  }
}
class MyStatefulWidgetState extends State<MyStatefulWidget>{

String variableCalledHello = "Hello World";

  void initState() {
    super.initState();
  }
 
  Widget build(BuildContext context) {
   return new _MyInheritedStateContainer(data:this,child:/* Body here */);
  }
}
class _MyInheritedStateContainer extends InheritedWidget{
    _MyInheritedStateContainer({
Key key,
     Widget child,
     this.data,
  }) : super(key: key, child: child);

final MyStatefulWidgetState data;

 
  bool updateShouldNotify(_MyInheritedStateContainer oldWidget) {
    return true;
  }
}

Tags:

Dart Example