noise/lib/main.dart

19 lines
320 B
Dart
Raw Normal View History

2021-10-04 14:35:48 +02:00
import 'package:flutter/material.dart';
2021-10-18 14:07:03 +02:00
import './login/login.dart';
2021-10-04 14:35:48 +02:00
void main() => runApp(const Noise());
2021-10-18 14:07:03 +02:00
class
2021-10-04 14:35:48 +02:00
class Noise extends StatelessWidget {
const Noise({Key? key}) : super(key: key);
2021-10-18 14:07:03 +02:00
bool _isOPasswordObscure = true;
2021-10-04 14:35:48 +02:00
@override
Widget build(BuildContext context) {
2021-10-18 14:07:03 +02:00
return MaterialApp();
2021-10-04 14:35:48 +02:00
}
}