Skip to content
Snippets Groups Projects
Commit f446da4d authored by vjrj's avatar vjrj
Browse files

G1 is expert mode is disabled (thx @arbocenc)

parent 328cd6b1
No related branches found
No related tags found
No related merge requests found
......@@ -57,6 +57,10 @@ class AppCubit extends HydratedCubit<AppState> {
return state.tutorials[tutorialId] ?? false;
}
void setG1Currency() {
emit(state.copyWith(currency: Currency.G1));
}
void switchCurrency() {
emit(state.copyWith(
currency: state.currency == Currency.G1 ? Currency.DU : Currency.G1));
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment