app/lib/components/otp_body.dart
2022-04-29 14:11:05 +07:00

15 lines
320 B
Dart

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();
}
}