ente/lib/ui/two_factor_recovery_page.dart
2021-06-26 16:07:17 +05:30

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