home_page.dart 402 B

12345678910111213
  1. import 'package:flutter/material.dart';
  2. import 'package:tetris/panel/page_portrait.dart';
  3. class HomePage extends StatelessWidget {
  4. const HomePage({Key key}) : super(key: key);
  5. @override
  6. Widget build(BuildContext context) {
  7. //only Android/iOS support land mode
  8. bool land = MediaQuery.of(context).orientation == Orientation.landscape;
  9. return land ? PageLand() : PagePortrait();
  10. }
  11. }