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 createState() => _OtpState(); } class _OtpState extends State { @override Widget build(BuildContext context) { return Scaffold( backgroundColor: const Color(0xff1b1c1e), appBar: AppBar( title: const Text('OTP VERIFICATION'), centerTitle: true, backgroundColor: const Color(0xff212226), ), body: const OtpBody(), ); } }