mirror of
https://github.com/Iconica-Development/flutter_login_widget.git
synced 2025-05-19 05:33:45 +02:00
23 lines
446 B
Dart
23 lines
446 B
Dart
// SPDX-FileCopyrightText: 2022 Iconica
|
|
//
|
|
// SPDX-License-Identifier: GPL-3.0-or-later
|
|
|
|
import 'package:flutter/material.dart';
|
|
|
|
void main() {
|
|
runApp(
|
|
const MaterialApp(
|
|
home: FlutterLoginDemo(),
|
|
),
|
|
);
|
|
}
|
|
|
|
class FlutterLoginDemo extends StatelessWidget {
|
|
const FlutterLoginDemo({Key? key}) : super(key: key);
|
|
|
|
@override
|
|
Widget build(BuildContext context) {
|
|
return const Scaffold(body: Text('FlutterLoginDemo'));
|
|
}
|
|
}
|