first commit
This commit is contained in:
@@ -0,0 +1,21 @@
|
||||
import 'package:flutter/material.dart';
|
||||
|
||||
import 'package:flutter_gen/gen_l10n/app_localizations.dart';
|
||||
|
||||
import '../components/LanguageSelectionScreen/language_list.dart';
|
||||
|
||||
class LanguageSelectionScreen extends StatelessWidget {
|
||||
const LanguageSelectionScreen({super.key});
|
||||
|
||||
static const routeName = "/settings/language";
|
||||
|
||||
@override
|
||||
Widget build(BuildContext context) {
|
||||
return Scaffold(
|
||||
appBar: AppBar(
|
||||
title: Text(AppLocalizations.of(context)!.language),
|
||||
),
|
||||
body: const LanguageList(),
|
||||
);
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user