first commit
This commit is contained in:
24
receiver_app_new/lib/main.dart
Normal file
24
receiver_app_new/lib/main.dart
Normal file
@@ -0,0 +1,24 @@
|
||||
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(),
|
||||
);
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user