Flutter - How to pass user data to all views

前端 未结 5 675
醉酒成梦
醉酒成梦 2021-01-30 03:10

I\'m new to the flutter world and mobile app development and struggling with how I should pass user data throughout my app.

I\'ve tried several things, but none seem gre

5条回答
  •  灰色年华
    2021-01-30 03:44

    I'd recommend investigating inherited widgets further; the code below shows how to use them with asynchronously updating data:

    import 'dart:convert';
    
    import 'package:flutter/material.dart';
    import 'package:http/http.dart' as http;
    
    void main() {
      runApp(new MaterialApp(
          title: 'Inherited Widgets Demo',
          theme: new ThemeData(
            primarySwatch: Colors.blue,
          ),
          home: new Scaffold(
              appBar: new AppBar(
                title: new Text('Inherited Widget Example'),
              ),
              body: new NamePage())));
    }
    
    // Inherited widget for managing a name
    class NameInheritedWidget extends InheritedWidget {
      const NameInheritedWidget({
        Key key,
        this.name,
        Widget child}) : super(key: key, child: child);
    
      final String name;
    
      @override
      bool updateShouldNotify(NameInheritedWidget old) {
        print('In updateShouldNotify');
        return name != old.name;
      }
    
      static NameInheritedWidget of(BuildContext context) {
        // You could also just directly return the name here
        // as there's only one field
        return context.inheritFromWidgetOfExactType(NameInheritedWidget);
      }
    }
    
    // Stateful widget for managing name data
    class NamePage extends StatefulWidget {
      @override
      _NamePageState createState() => new _NamePageState();
    }
    
    // State for managing fetching name data over HTTP
    class _NamePageState extends State {
      String name = 'Placeholder';
    
      // Fetch a name asynchonously over HTTP
      _get() async {
        var res = await http.get('https://jsonplaceholder.typicode.com/users');
        var name = json.decode(res.body)[0]['name'];
        setState(() => this.name = name); 
      }
    
      @override
      void initState() {
        super.initState();
        _get();
      }
    
      @override
      Widget build(BuildContext context) {
        return new NameInheritedWidget(
          name: name,
          child: const IntermediateWidget()
        );
      }
    }
    
    // Intermediate widget to show how inherited widgets
    // can propagate changes down the widget tree
    class IntermediateWidget extends StatelessWidget {
      // Using a const constructor makes the widget cacheable
      const IntermediateWidget();
    
      @override
      Widget build(BuildContext context) {
        return new Center(
          child: new Padding(
            padding: new EdgeInsets.all(10.0),
            child: const NameWidget()));
      }
    }
    
    class NameWidget extends StatelessWidget {
      const NameWidget();
    
      @override
      Widget build(BuildContext context) {
        final inheritedWidget = NameInheritedWidget.of(context);
        return new Text(
          inheritedWidget.name,
          style: Theme.of(context).textTheme.display1,
        );
      }
    }
    

提交回复
热议问题