mirror of
https://github.com/Iconica-Development/flutter_login_widget.git
synced 2025-05-19 05:33:45 +02:00
naming change
This commit is contained in:
parent
dd34b4f305
commit
6b55927b65
2 changed files with 9 additions and 5 deletions
File diff suppressed because one or more lines are too long
|
@ -5,14 +5,18 @@
|
|||
import 'package:flutter/material.dart';
|
||||
|
||||
void main() {
|
||||
runApp(const MaterialApp(home: FlutterEmailPasswordLoginDemo()));
|
||||
runApp(
|
||||
const MaterialApp(
|
||||
home: FlutterLoginDemo(),
|
||||
),
|
||||
);
|
||||
}
|
||||
|
||||
class FlutterEmailPasswordLoginDemo extends StatelessWidget {
|
||||
const FlutterEmailPasswordLoginDemo({Key? key}) : super(key: key);
|
||||
class FlutterLoginDemo extends StatelessWidget {
|
||||
const FlutterLoginDemo({Key? key}) : super(key: key);
|
||||
|
||||
@override
|
||||
Widget build(BuildContext context) {
|
||||
return const Scaffold(body: Text('FlutterEmailPasswordLoginDemo'));
|
||||
return const Scaffold(body: Text('FlutterLoginDemo'));
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue