17 lines
No EOL
420 B
Dart
17 lines
No EOL
420 B
Dart
import 'package:flutter/material.dart';
|
|
|
|
class TwoFactorRecoveryPage extends StatefulWidget {
|
|
TwoFactorRecoveryPage({Key key}) : super(key: key);
|
|
|
|
@override
|
|
_TwoFactorRecoveryPageState createState() => _TwoFactorRecoveryPageState();
|
|
}
|
|
|
|
class _TwoFactorRecoveryPageState extends State<TwoFactorRecoveryPage> {
|
|
@override
|
|
Widget build(BuildContext context) {
|
|
return Container(
|
|
child: null,
|
|
);
|
|
}
|
|
} |