implement basic selections without functionality

This commit is contained in:
2025-06-28 09:22:05 +02:00
parent 9544bf36d5
commit cd0024d791
2 changed files with 94 additions and 0 deletions

View File

@@ -0,0 +1,47 @@
import 'package:flutter/material.dart';
import 'package:game_tracker/core/custom_theme.dart';
class LanguageView extends StatefulWidget {
const LanguageView({super.key});
@override
State<LanguageView> createState() => _LanguageViewState();
}
class _LanguageViewState extends State<LanguageView> {
@override
Widget build(BuildContext context) {
return Scaffold(
appBar: AppBar(title: const Text('Sprache'), titleTextStyle: TextStyle(fontWeight: FontWeight.bold, fontSize: 20), centerTitle: true, backgroundColor: CustomTheme.backgroundColor),
backgroundColor: CustomTheme.backgroundColor,
body: Column(
children: [
ListTile(
title: Text("Systemstandard"),
leading: Radio(
value: Null,
groupValue: Null,
onChanged: (value) {},
),
),
ListTile(
title: Text("Deutsch"),
leading: Radio(
value: Null,
groupValue: Null,
onChanged: (value) {},
),
),
ListTile(
title: Text("Englisch"),
leading: Radio(
value: Null,
groupValue: Null,
onChanged: (value) {},
),
)
],
),
);
}
}