Flutter for Beginners by Alessandro Biessek
Author:Alessandro Biessek [Alessandro Biessek]
Language: eng
Format: epub
Tags: COM051460 - COMPUTERS / Programming / Mobile Devices, COM051280 - COMPUTERS / Programming Languages / Java, COM051390 - COMPUTERS / Programming / Open Source
Publisher: Packt Publishing
Published: 2019-09-12T12:54:08+00:00
Let's check out how to respond to a size change on the screen. In this example, we will change the way two widgets are displayed based on the available space. So, the widgets are displayed one on top of the other when there is not sufficient room for them (we evaluate this using the BoxContraints instance given by the LayoutBuilder widget), or side-by-side when there is more space available (such as in the landscape position):
class MyApp extends StatelessWidget {
@override
Widget build(BuildContext context) {
return MaterialApp(
home: LayoutBuilder(
builder: (BuildContext context, BoxConstraints constraints) {
// build the layout based on constraints values
}
)
)
}
}
As you can see, we have added a LayoutBuilder widget, and we can build the layout based on the given constraints:
if (constraints.maxWidth <= 500) {
return Column(
mainAxisSize: MainAxisSize.max,
children: <Widget>[
Expanded(
child: Container(
color: Colors.green,
child: Center(child: Text("1")),
),
),
Expanded(
child: Container(
color: Colors.blue,
child: Center(child: Text("2")),
),
),
],
);
}
Conditionally, we display a Column widget when the available width is less than 500. And when we have enough room we change the returned widget:
return Row(
mainAxisSize: MainAxisSize.max,
children: <Widget>[
Expanded(
child: Container(
color: Colors.yellow,
child: Center(child: Text("1")),
),
),
Expanded(
child: Container(
color: Colors.purple,
child: Center(child: Text("2")),
),
),
],
);
In this case we return a Row widget, as we have sufficient space (greater than 500).
This is how it looks in different orientations:
Download
This site does not store any files on its server. We only index and link to content provided by other sites. Please contact the content providers to delete copyright contents if any and email us, we'll remove relevant links or contents immediately.
Coding Theory | Localization |
Logic | Object-Oriented Design |
Performance Optimization | Quality Control |
Reengineering | Robohelp |
Software Development | Software Reuse |
Structured Design | Testing |
Tools | UML |
Deep Learning with Python by François Chollet(12401)
Hello! Python by Anthony Briggs(9753)
OCA Java SE 8 Programmer I Certification Guide by Mala Gupta(9639)
The Mikado Method by Ola Ellnestam Daniel Brolund(9638)
Dependency Injection in .NET by Mark Seemann(9166)
Algorithms of the Intelligent Web by Haralambos Marmanis;Dmitry Babenko(8149)
Test-Driven iOS Development with Swift 4 by Dominik Hauser(7654)
Grails in Action by Glen Smith Peter Ledbrook(7569)
The Well-Grounded Java Developer by Benjamin J. Evans Martijn Verburg(7393)
Secrets of the JavaScript Ninja by John Resig Bear Bibeault(6279)
Becoming a Dynamics 365 Finance and Supply Chain Solution Architect by Brent Dawson(6267)
Microservices with Go by Alexander Shuiskov(6030)
Practical Design Patterns for Java Developers by Miroslav Wengner(5947)
Test Automation Engineering Handbook by Manikandan Sambamurthy(5914)
Angular Projects - Third Edition by Aristeidis Bampakos(5251)
Kotlin in Action by Dmitry Jemerov(4919)
The Art of Crafting User Stories by The Art of Crafting User Stories(4839)
NetSuite for Consultants - Second Edition by Peter Ries(4795)
Demystifying Cryptography with OpenSSL 3.0 by Alexei Khlebnikov(4603)
