flutter_login_widget/example/lib/main.dart
2022-09-20 16:32:46 +02:00

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'));
}
}