25 lines
585 B
Dart
25 lines
585 B
Dart
import 'package:flutter/material.dart';
|
|
import 'screens/phone_input_screen.dart';
|
|
|
|
void main() {
|
|
runApp(const FlashOtpReceiverApp());
|
|
}
|
|
|
|
class FlashOtpReceiverApp extends StatelessWidget {
|
|
const FlashOtpReceiverApp({super.key});
|
|
|
|
@override
|
|
Widget build(BuildContext context) {
|
|
return MaterialApp(
|
|
title: 'Flash OTP',
|
|
debugShowCheckedModeBanner: false,
|
|
theme: ThemeData(
|
|
colorScheme: ColorScheme.fromSeed(seedColor: Colors.green),
|
|
useMaterial3: true,
|
|
fontFamily: 'Cairo',
|
|
),
|
|
home: const PhoneInputScreen(),
|
|
);
|
|
}
|
|
}
|