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 createState() => _DesktopRemotePageState(); } class _DesktopRemotePageState extends State { @override Widget build(BuildContext context) { return Container(); } }