mirror of
https://github.com/dancojocaru2000/logic-circuits-simulator.git
synced 2025-02-22 17:19:36 +02:00
17 lines
368 B
Dart
17 lines
368 B
Dart
|
import 'package:flutter/material.dart';
|
||
|
|
||
|
class SettingsPage extends StatelessWidget {
|
||
|
const SettingsPage({Key? key}) : super(key: key);
|
||
|
|
||
|
static const String routeName = '/settings';
|
||
|
|
||
|
@override
|
||
|
Widget build(BuildContext context) {
|
||
|
return Scaffold(
|
||
|
appBar: AppBar(
|
||
|
title: const Text('Settings'),
|
||
|
centerTitle: true,
|
||
|
),
|
||
|
);
|
||
|
}
|
||
|
}
|