Michael McCormick
Michael McCormick
I've just started using `flutter_secure_storage` in a new project, for some reason `containsKey` is returning `true` for every key value I give it. In the below image (showing a debug...
I'm getting the following build error after upgrading to Flutter 2.0.0 > ../../flutter/.pub-cache/hosted/pub.dartlang.org/flutter_built_redux-0.6.0/lib/flutter_built_redux.dart:95:17: Error: The method 'inheritFromWidgetOfExactType' isn't defined for the class 'BuildContext'. > - 'BuildContext' is from 'package:flutter/src/widgets/framework.dart' ('../../flutter/packages/flutter/lib/src/widgets/framework.dart')....
> Because flutter_built_redux 0.6.0 depends on built_redux >=6.1.1
Using the following example: ```dart import 'package:flutter/material.dart'; void main() { runApp( MaterialApp( home: Scaffold( body: Center( child: FlatButton( color: const Color(0xFFFE9700), shape: StadiumBorder(), child: Text('Click me!'), onPressed: () {}, ),...
**Steps to Reproduce** I updated Hive from version `2.0.0` -> `2.0.4`, I performed logic which re-initialises Hive (using `Hive.initFlutter`) with a new `subDir`, I then got the following exception when...