Advertisement
Guest User

Untitled

a guest
Mar 26th, 2019
72
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.44 KB | None | 0 0
  1. class Child2PageState extends State<Child2Page> {
  2. String value = "Page 2";
  3.  
  4. @override
  5. Widget build(BuildContext context) {
  6. final currentValue = ParentProvider.of(context).title;
  7. return Padding(
  8. padding: const EdgeInsets.all(15.0),
  9. child: Column(
  10. children: [
  11. Text(
  12. currentValue ?? value,
  13. style: Theme.of(context).primaryTextTheme.headline,
  14. ),
  15. ],
  16. ),
  17. );
  18. }
  19. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement