add: desktop password page

This commit is contained in:
Kingtous
2022-05-29 10:25:36 +08:00
parent 20e95a684d
commit 24a6846f03
2 changed files with 156 additions and 51 deletions

View File

@@ -0,0 +1,16 @@
import 'package:flutter/material.dart';
/// Remote Page, use it in multi window context
class DesktopRemotePage extends StatefulWidget {
const DesktopRemotePage({Key? key}) : super(key: key);
@override
State<DesktopRemotePage> createState() => _DesktopRemotePageState();
}
class _DesktopRemotePageState extends State<DesktopRemotePage> {
@override
Widget build(BuildContext context) {
return Container();
}
}