22 lines
489 B
Dart
22 lines
489 B
Dart
import 'package:flutter/material.dart';
|
|
|
|
class ConfigurationsScreen extends StatefulWidget {
|
|
ConfigurationsScreen({Key key}) : super(key: key);
|
|
|
|
@override
|
|
_ConfigurationsScreenState createState() => _ConfigurationsScreenState();
|
|
}
|
|
|
|
class _ConfigurationsScreenState extends State<ConfigurationsScreen> {
|
|
@override
|
|
Widget build(BuildContext context) {
|
|
return Container(
|
|
child: Center(
|
|
child: Text(
|
|
"Configurations"
|
|
)
|
|
),
|
|
);
|
|
}
|
|
}
|