Giter VIP home page Giter VIP logo

Comments (6)

simc avatar simc commented on May 18, 2024

No it should be an instance of Box. There should also be a file settingsbox.hive created.

from hive.

GroovinChip avatar GroovinChip commented on May 18, 2024

Odd. I'm messing around with using Hive on Windows, and I'm using Provider to send a box down the widget tree. I create it in the root widget like so:

class MyApp extends StatefulWidget {
  // This widget is the root of your application.
  @override
  _MyAppState createState() => _MyAppState();
}

class _MyAppState extends State<MyApp> {
  var box;

  @override
  void initState() {
    makeBox();
    super.initState();
  }

  void makeBox() async {
    box = await Hive.box('SettingsBox');
  }

  @override
  Widget build(BuildContext context) {
    return Provider<Box>(
      builder: (context) => box,
      child: MaterialApp(
        title: 'Flutter Demo',
        theme: ThemeData(
          primarySwatch: Colors.blue,
        ),
        home: MyHomePage(),
      ),
    );
  }
}

When I access it in a different widget, like so: var box = Provider.of<Box>(context);, Flutter tells me that the runtimeType is null.

from hive.

simc avatar simc commented on May 18, 2024

If I'm correct, the problem here is that makeBox() is not finished yet when build() tries to access the box. You don't await makeBox(). The problem is that in order to await makeBox(), initState() would need to be async which is not allowed.

I'm working on helpers for Flutter but until then you could use something like that:

class MyApp extends StatelessWidget {
  @override
  Widget build(BuildContext context) {
    return MaterialApp(
      home: FutureBuilder<Box>(
        future: Hive.box('SettingsBox'),
        builder: (BuildContext context, AsyncSnapshot<Box> snapshot) {
          if (snapshot.connectionState == ConnectionState.done) {
            return SomePage();
          } else {
            return Center(
              child: Text('Please wait'),
            );
          }
        },
      ),
    );
  }
}

class SomePage extends StatelessWidget {
  @override
  Widget build(BuildContext context) {
    var box = Hive['SettingsBox'];
    // Do whatever you like with the box
    return Center(
      child: Text('Your App content'),
    );
  }
}

Btw: you don't have to pass boxes. If you already opened it, you can get the box instance using Hive['yourBoxName']

from hive.

GroovinChip avatar GroovinChip commented on May 18, 2024

Okay, thank you very much!

from hive.

simc avatar simc commented on May 18, 2024

I created a basic example if you are interested...

from hive.

GroovinChip avatar GroovinChip commented on May 18, 2024

Thanks!

from hive.

Related Issues (20)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.