parent
c3aa174274
commit
478c44c17f
7 changed files with 103 additions and 30 deletions
@ -0,0 +1,4 @@ |
||||
// ignore: camel_case_types |
||||
class platformViewRegistry { |
||||
static registerViewFactory(String viewId, dynamic cb) {} |
||||
} |
@ -0,0 +1,9 @@ |
||||
import 'dart:ui' as ui; |
||||
|
||||
// ignore: camel_case_types |
||||
class platformViewRegistry { |
||||
static registerViewFactory(String viewId, dynamic cb) { |
||||
// ignore:undefined_prefixed_name |
||||
ui.platformViewRegistry.registerViewFactory(viewId, cb); |
||||
} |
||||
} |
@ -0,0 +1,36 @@ |
||||
import 'package:flutter/material.dart'; |
||||
|
||||
class ResponsiveWidget extends StatelessWidget { |
||||
final Widget largeScreen; |
||||
final Widget mediumScreen; |
||||
final Widget smallScreen; |
||||
|
||||
const ResponsiveWidget({Key key, @required this.largeScreen, this.mediumScreen, this.smallScreen}) : super(key: key); |
||||
|
||||
static bool isSmallScreen(BuildContext context) { |
||||
return MediaQuery.of(context).size.width < 800; |
||||
} |
||||
|
||||
static bool isLargeScreen(BuildContext context) { |
||||
return MediaQuery.of(context).size.width > 1200; |
||||
} |
||||
|
||||
static bool isMediumScreen(BuildContext context) { |
||||
return MediaQuery.of(context).size.width >= 800 && MediaQuery.of(context).size.width <= 1200; |
||||
} |
||||
|
||||
@override |
||||
Widget build(BuildContext context) { |
||||
return LayoutBuilder( |
||||
builder: (context, constraints) { |
||||
if (constraints.maxWidth > 1200) { |
||||
return largeScreen; |
||||
} else if (constraints.maxWidth <= 1200 && constraints.maxWidth >= 800) { |
||||
return mediumScreen ?? largeScreen; |
||||
} else { |
||||
return smallScreen ?? largeScreen; |
||||
} |
||||
}, |
||||
); |
||||
} |
||||
} |
Loading…
Reference in new issue