Created
September 3, 2019 03:07
-
-
Save saltyskip/959584d11ccef6de7b6bc7e57dbfd88c to your computer and use it in GitHub Desktop.
This file contains 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:english_words/english_words.dart'; | |
import 'package:flutter/material.dart'; | |
void main() => runApp(MyApp()); | |
class MyApp extends StatelessWidget { | |
@override | |
Widget build(BuildContext context) { | |
Color color = Theme.of(context).primaryColor; | |
Widget buttonSection = Container( | |
child: Row( | |
mainAxisAlignment: MainAxisAlignment.spaceEvenly, | |
children: [ | |
_buildButtonColumn(color, Icons.call, 'CALL'), | |
_buildButtonColumn(color, Icons.near_me, 'ROUTE'), | |
_buildButtonColumn(color, Icons.share, 'SHARE'), | |
], | |
), | |
); | |
Widget textSection = Container( | |
padding: const EdgeInsets.all(32), | |
child: Text( | |
'Lake Oeschinen lies at the foot of the Blüemlisalp in the Bernese ' | |
'Alps. Situated 1,578 meters above sea level, it is one of the ' | |
'larger Alpine Lakes. A gondola ride from Kandersteg, followed by a ' | |
'half-hour walk through pastures and pine forest, leads you to the ' | |
'lake, which warms to 20 degrees Celsius in the summer. Activities ' | |
'enjoyed here include rowing, and riding the summer toboggan run.', | |
softWrap: true, | |
), | |
); | |
return MaterialApp( | |
title: "Flutter Layouts", | |
home: Scaffold( | |
appBar: AppBar( | |
title: Text('Flutter layout demo'), | |
), | |
body: Column( | |
children: <Widget>[ | |
Image.asset( | |
'images/lake.jpg', | |
width: 600, | |
height: 240, | |
fit: BoxFit.cover, | |
), | |
titleSection, | |
buttonSection, | |
textSection | |
], | |
), | |
), | |
); | |
} | |
Column _buildButtonColumn(Color color, IconData icon, String label) { | |
return Column( | |
mainAxisSize: MainAxisSize.min, | |
mainAxisAlignment: MainAxisAlignment.center, | |
children: [ | |
Icon(icon, color: color), | |
Container( | |
margin: const EdgeInsets.only(top: 8), | |
child: Text( | |
label, | |
style: TextStyle( | |
fontSize: 12, | |
fontWeight: FontWeight.w400, | |
color: color, | |
), | |
), | |
), | |
], | |
); | |
} | |
Widget titleSection = Container( | |
padding: const EdgeInsets.all(32), | |
child: Row( | |
children: [ | |
Expanded( | |
/*1*/ | |
child: Column( | |
crossAxisAlignment: CrossAxisAlignment.start, | |
children: [ | |
/*2*/ | |
Container( | |
padding: const EdgeInsets.only(bottom: 8), | |
child: Text( | |
'Oeschinen Lake Campground', | |
style: TextStyle( | |
fontWeight: FontWeight.bold, | |
), | |
), | |
), | |
Text( | |
'Kandersteg, Switzerland', | |
style: TextStyle( | |
color: Colors.grey[500], | |
), | |
), | |
], | |
), | |
), | |
/*3*/ | |
Icon( | |
Icons.star, | |
color: Colors.red[500], | |
), | |
Text('41'), | |
], | |
), | |
); | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment