Last active
February 10, 2020 06:13
-
-
Save ybakos/2deba9945bcb45e66bbd2998acedd36a to your computer and use it in GitHub Desktop.
Adaptive Layouts with LayoutBuilder
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import 'package:flutter/material.dart'; | |
import 'package:flutter/services.dart'; | |
void main() { | |
SystemChrome.setPreferredOrientations([ | |
DeviceOrientation.portraitUp, DeviceOrientation.landscapeLeft, DeviceOrientation.landscapeRight | |
]); | |
runApp(App()); | |
} | |
class App extends StatelessWidget { | |
@override | |
Widget build(BuildContext context) { | |
return MaterialApp( | |
title: 'Adaptive Layouts', | |
theme: ThemeData(primarySwatch: Colors.blue), | |
home: Scaffold( | |
appBar: AppBar(title: Text('Adaptive Layouts')), | |
body: LayoutBuilder(builder: layoutDecider) | |
// body: Container( | |
// constraints: BoxConstraints(minWidth: 400, minHeight: 300, maxWidth: 400, maxHeight: 300), | |
// child: LayoutBuilder(builder: layoutDecider) | |
// ), | |
) | |
); | |
} | |
Widget layoutDecider(BuildContext context, BoxConstraints constraints) => | |
constraints.maxWidth < 500 ? VerticalLayout() : HorizontalLayout(); | |
} | |
class VerticalLayout extends StatelessWidget { | |
@override | |
Widget build(BuildContext context) { | |
return Container(color: Colors.lightGreen); | |
} | |
} | |
class HorizontalLayout extends StatelessWidget { | |
@override | |
Widget build(BuildContext context) { | |
return Row( | |
mainAxisAlignment: MainAxisAlignment.spaceEvenly, | |
children: [ | |
Expanded(child: Container(color: Colors.lightGreen)), | |
Expanded(child: Container(color: Colors.deepOrange)) | |
]); | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment