19 lines
320 B
Dart
19 lines
320 B
Dart
import 'package:flutter/material.dart';
|
|
import './login/login.dart';
|
|
|
|
void main() => runApp(const Noise());
|
|
|
|
class
|
|
|
|
|
|
class Noise extends StatelessWidget {
|
|
const Noise({Key? key}) : super(key: key);
|
|
|
|
bool _isOPasswordObscure = true;
|
|
|
|
@override
|
|
Widget build(BuildContext context) {
|
|
return MaterialApp();
|
|
}
|
|
}
|