16 lines
320 B
Dart
16 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();
|
||
|
}
|
||
|
}
|