This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| class AccountsTab extends StatelessWidget { | |
| final AccountBloc Function(BuildContext) _example; | |
| AccountsTab({AccountBloc Function(BuildContext) example}): this._example=example; | |
| @override | |
| Widget build(BuildContext context) { | |
| return MultiRepositoryProvider( | |
| providers: [ |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| class AccountsTab extends StatelessWidget { | |
| @override | |
| Widget build(BuildContext context) { | |
| return MultiRepositoryProvider( | |
| providers: [ | |
| RepositoryProvider<OfficersRepository>( | |
| create: (_) => OfficersRepository(context.repository<ApiHttpClient>()), | |
| ) | |
| ], |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| keytool -genkey -v -keystore appdistribution.keystore -alias bbh -keyalg RSA -keysize 2048 -validity 10000 |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| // In your android/app/build.gradle | |
| // below other plugins | |
| apply plugin: 'com.google.firebase.appdistribution' | |
| android { | |
| // std config ommited | |
| buildTypes { |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| // In your android/app/build.gradle | |
| android { | |
| // std config ommited | |
| signingConfigs { | |
| appDistribution { | |
| storeFile file('../appdistribution.keystore') | |
| storePassword 'bbh' |