mirror of
https://github.com/Iconica-Development/flutter_login_widget.git
synced 2025-05-19 05:33:45 +02:00
19 lines
476 B
Dart
19 lines
476 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: FlutterEmailPasswordLoginDemo()));
|
||
|
}
|
||
|
|
||
|
class FlutterEmailPasswordLoginDemo extends StatelessWidget {
|
||
|
const FlutterEmailPasswordLoginDemo({Key? key}) : super(key: key);
|
||
|
|
||
|
@override
|
||
|
Widget build(BuildContext context) {
|
||
|
return const Scaffold(body: Text('FlutterEmailPasswordLoginDemo'));
|
||
|
}
|
||
|
}
|