app/lib/components/otp_body.dart

16 lines
320 B
Dart
Raw Normal View History

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