mirror of
https://github.com/smmarty/friflex_flutter_starter.git
synced 2025-12-22 09:30:45 +00:00
15 lines
280 B
Dart
15 lines
280 B
Dart
import 'package:flutter/material.dart';
|
|
|
|
class MainScreen extends StatelessWidget {
|
|
const MainScreen({super.key});
|
|
|
|
@override
|
|
Widget build(BuildContext context) {
|
|
return Scaffold(
|
|
appBar: AppBar(
|
|
title: const Text('Main Screen'),
|
|
),
|
|
);
|
|
}
|
|
}
|