Answers for "inherited widget flutter"

3

flutter inhereted widget

class MyInherited extends InheritedWidget {
  const MyInherited({
    Key? key,
    required Widget child,
  }) : super(key: key, child: child);


  // Here be dragons: null check (!) used, but if there's no
  // MyInhereted over where you used it this will throw.
  static MyInherited of(BuildContext context) {
    return context.dependOnInheritedWidgetOfExactType<MyInherited>()!;
  }

  //if you have properties, it should look something like:
  // bool updateShouldNotify(MyInherited old) => old.prop !== new.prop;
  
  //if you don't: 
  @override
  bool updateShouldNotify(MyInherited old) => false;
}
Posted by: Guest on December-03-2020
1

inheritedWidget

import 'package:flutter/widgets.dart';

class MyInherited extends InheritedWidget {
  const MyInherited({
    Key? key,
    required Widget child,
  }) : super(key: key, child: child);


  // Here be dragons: null check (!) used, but if there's no
  // MyInhereted over where you used it this will throw.
  static MyInherited of(BuildContext context) {
    return context.dependOnInheritedWidgetOfExactType<MyInherited>()!;
  }

  //if you have properties, it should look something like:
  // bool updateShouldNotify(MyInherited old) => old.prop !== new.prop;
  
  //if you don't: 
  @override
  bool updateShouldNotify(MyInherited old) => false;
}
Posted by: Guest on October-01-2021

Browse Popular Code Answers by Language