25 lines
577 B
Dart
25 lines
577 B
Dart
|
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(),
|
||
|
);
|
||
|
}
|
||
|
}
|