12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849 |
- import 'package:flutter/material.dart';
- /// Description: 响应式布局
- /// Time : 08/03/2022 Wednesday
- /// Author : liuyuqi.gov@msn.cn
- class Responsive extends StatelessWidget {
- final Widget mobile;
- final Widget tablet;
- final Widget desktop;
- const Responsive({
- Key? key,
- required this.mobile,
- required this.tablet,
- required this.desktop,
- }) : super(key: key);
- // This size work fine on my design, maybe you need some customization depends on your design
- static bool isMobile(BuildContext context) =>
- MediaQuery.of(context).size.width < 650;
- static bool isTablet(BuildContext context) =>
- MediaQuery.of(context).size.width < 900 &&
- MediaQuery.of(context).size.width >= 650;
- static bool isDesktop(BuildContext context) =>
- MediaQuery.of(context).size.width >= 900;
- @override
- Widget build(BuildContext context) {
- return LayoutBuilder(
- // If our width is more than 900 then we consider it a desktop
- builder: (context, constraints) {
- if (constraints.maxWidth >= 900) {
- return desktop;
- }
- // If width it less then 900 and more then 650 we consider it as tablet
- else if (constraints.maxWidth >= 650) {
- return tablet;
- }
- // Or less then that we called it mobile
- else {
- return mobile;
- }
- },
- );
- }
- }
|