From 42ff3c73a3608ad09c60b63b7b01f986013f0035 Mon Sep 17 00:00:00 2001 From: D Shrat <dshrat29@gmail.com> Date: Fri, 29 Apr 2022 14:11:05 +0700 Subject: [PATCH] create otp file --- lib/components/otp_body.dart | 15 +++++++++++++++ lib/screens/otp.dart | 24 ++++++++++++++++++++++++ 2 files changed, 39 insertions(+) create mode 100644 lib/components/otp_body.dart create mode 100644 lib/screens/otp.dart diff --git a/lib/components/otp_body.dart b/lib/components/otp_body.dart new file mode 100644 index 0000000..e1a12a1 --- /dev/null +++ b/lib/components/otp_body.dart @@ -0,0 +1,15 @@ +import 'package:flutter/material.dart'; + +class OtpBody extends StatefulWidget { + const OtpBody({Key? key}) : super(key: key); + + @override + State<OtpBody> createState() => _OtpBodyState(); +} + +class _OtpBodyState extends State<OtpBody> { + @override + Widget build(BuildContext context) { + return Container(); + } +} diff --git a/lib/screens/otp.dart b/lib/screens/otp.dart new file mode 100644 index 0000000..668b992 --- /dev/null +++ b/lib/screens/otp.dart @@ -0,0 +1,24 @@ +import 'package:flutter/material.dart'; +import 'package:nekoya_flutter/components/otp_body.dart'; + +class Otp extends StatefulWidget { + const Otp({Key? key}) : super(key: key); + + @override + State<Otp> createState() => _OtpState(); +} + +class _OtpState extends State<Otp> { + @override + Widget build(BuildContext context) { + return Scaffold( + backgroundColor: const Color(0xff1b1c1e), + appBar: AppBar( + title: const Text('Otp'), + centerTitle: true, + backgroundColor: const Color(0xff212226), + ), + body: const OtpBody(), + ); + } +}