app/lib/screens/otp.dart

25 lines
577 B
Dart
Raw Normal View History

2022-04-29 09:11:05 +02:00
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(),
);
}
}