mirror of
https://github.com/ALEZ-DEV/Babylonia-terminal.git
synced 2025-12-16 01:18:50 +00:00
13 lines
255 B
Dart
13 lines
255 B
Dart
import 'package:flutter/material.dart';
|
|
|
|
class GameSettingsPage extends StatelessWidget {
|
|
const GameSettingsPage({super.key});
|
|
|
|
@override
|
|
Widget build(BuildContext context) {
|
|
return const Center(
|
|
child: Text('Game settings'),
|
|
);
|
|
}
|
|
}
|