-
Notifications
You must be signed in to change notification settings - Fork 6
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
2. introduced flutter_localizations.
- Loading branch information
Showing
9 changed files
with
28 additions
and
41 deletions.
There are no files selected for viewing
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -47,4 +47,5 @@ app.*.map.json | |
|
||
# firebase options | ||
lib/firebase_options.dart | ||
pubspec.lock | ||
pubspec.lock | ||
local.properties |
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,3 @@ | ||
{ | ||
"home": "Home" | ||
} |
This file contains 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
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,10 +1,10 @@ | ||
import 'package:get_it/get_it.dart'; | ||
import 'package:injectable/injectable.dart'; | ||
import 'package:praxis_data/injection/data_di_config.dart'; | ||
import 'package:praxis_flutter/injection.config.dart'; | ||
|
||
@InjectableInit( | ||
initializerName: r'$initGetIt', // default | ||
preferRelativeImports: true, // default | ||
asExtension: false, // default | ||
) | ||
void configureAppInjection(String env) => $initGetIt(getIt); | ||
void configureAppInjection(String env) => $initGetIt(GetIt.instance, environment: env); |
This file contains 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
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,8 @@ | ||
## This file must *NOT* be checked into Version Control Systems, | ||
# as it contains information specific to your local configuration. | ||
# | ||
# Location of the SDK. This is only used by Gradle. | ||
# For customization when using a Version Control System, please read the | ||
# header note. | ||
#Thu Apr 07 13:49:22 IST 2022 | ||
sdk.dir=/Users/anmolverma/Library/Android/sdk |
This file was deleted.
Oops, something went wrong.
6 changes: 2 additions & 4 deletions
6
...is_data/lib/injection/data_di_config.dart → praxis_data/lib/injection/injection.dart
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,12 +1,10 @@ | ||
import 'package:get_it/get_it.dart'; | ||
import 'package:injectable/injectable.dart'; | ||
import 'data_di_config.config.dart'; | ||
|
||
final getIt = GetIt.instance; | ||
import 'package:praxis_data/injection/injection.config.dart'; | ||
|
||
@InjectableInit( | ||
initializerName: r'$initDataGetIt', // default | ||
preferRelativeImports: true, // default | ||
asExtension: false, // default | ||
) | ||
void configureDataInjection(String env) => $initDataGetIt(getIt); | ||
void configureDataInjection(String env) => $initDataGetIt(GetIt.instance, environment: env); |
This file contains 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