Andrey Gordeev

Results 27 issues of Andrey Gordeev

There are several cases in my app: - the user is unauthenticated (route to `/`, which is SignUpPage - the user is authenticated, but profile is incomplete (route to `/complete_profile`)...

I added a function for backing up Firestore database, and now all my tests that use `firestore-jest-mock` fail due to this error: ``` TypeError: Cannot read property 'FirestoreAdminClient' of undefined...

I'm getting this error when trying to build the project for `Test` target: The code is: ```swift extension CGPoint: Decodable { /// Decodes CGPoint from JSON array. Returns CGPoint.zero if...

The widget doesn't slide the content up automatically when I try to use it this way: ```dart KeyboardAvoider( autoScroll: true, child: ListView( controller: scrollController, shrinkWrap: true, children: [ // My...

The code to reproduce is: ```dart showCupertinoDialog( context: context, useRootNavigator: true, builder: (_) => CupertinoAlertDialog( title: const Text('Delete account'), content: const Text('Are you sure you want to delete the account?'),...

framework
f: cupertino
has reproducible steps
P4
workaround available
found in release: 3.7
found in release: 3.11

I'm trying to write a value into the storage: ```dart await secureStorage.write(key: 'authDetails', value: jsonEncode(authDetails.toJson())); ``` and getting this error: ```dart TypeError: undefined is not an object (evaluating 'dart.global.crypto.subtle.generateKey') 0m...

I'm simply trying to instantiate the library: ```dart flutterJs = FlutterJs(); ``` but `initEngine` throws this error: ```dart flutter: type 'Future' is not a subtype of type 'Future' in type...

I'm using DF on Mac. Here's a blueprint I want to be digged: https://s32.postimg.org/7eebxp4yd/Screen_Shot_2016_07_17_at_8_18_32_PM.png Here's the result: https://s32.postimg.org/bumq9jnhx/Screen_Shot_2016_07_17_at_8_22_01_PM.png Generated macro text: ``` 1236 WORLD_PARAM_DELETE LEGENDS_EXPORT_DETAILED_MAP SETUP_NOTES_DELETE_NOTE ITEM_DUMP A_COMBAT_DODGE A_STATUS_DESC A_SLEEP_DAWN...

First of all, thanks for the library. I have two models, both conform to `Model` protocol: ``` swift public struct Person { public let id: String public let name: String...