Skip to content

Commit

Permalink
issue-151 disabled language picker
Browse files Browse the repository at this point in the history
  • Loading branch information
gennadyterekhov committed Jun 16, 2024
1 parent 9f94f4f commit 4e8162a
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 2 deletions.
5 changes: 4 additions & 1 deletion lib/layers/presentation/pages/home.dart
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,10 @@ class _HomePageState extends State<HomePage> with RestorationMixin {
final pickers = Padding(
padding: const EdgeInsets.only(top: 30.0, bottom: 40.0),
child: Column(
children: [gamePicker, languagePicker],
children: [
gamePicker,
//languagePicker, // https://github.com/gennadyterekhov/the_elder_scrolls_alchemy_client/issues/151
],
),
);

Expand Down
Original file line number Diff line number Diff line change
@@ -1,9 +1,10 @@
import 'package:flutter/material.dart';
import 'package:flutter_bloc/flutter_bloc.dart';
import 'package:the_elder_scrolls_alchemy_client/layers/data/resources/constant.dart';
import 'package:flutter_gen/gen_l10n/app_localizations.dart';
import 'package:the_elder_scrolls_alchemy_client/layers/data/resources/constant.dart';
import 'package:the_elder_scrolls_alchemy_client/layers/state_management/app_state.dart';

@deprecated //https://github.com/gennadyterekhov/the_elder_scrolls_alchemy_client/issues/151
class LanguagePicker extends StatelessWidget {
const LanguagePicker({Key? key}) : super(key: key);

Expand Down

0 comments on commit 4e8162a

Please sign in to comment.