Skip to content

Instantly share code, notes, and snippets.

@jediyeti
Created January 30, 2020 16:02
Show Gist options
  • Save jediyeti/3ff4086d20bb755da160a3ed70b268d0 to your computer and use it in GitHub Desktop.
Save jediyeti/3ff4086d20bb755da160a3ed70b268d0 to your computer and use it in GitHub Desktop.
Complex Layout
import 'package:flutter/material.dart';
void main() {
runApp(MyApp());
}
class MyApp extends StatelessWidget {
@override
Widget build(BuildContext context) {
Color color = Theme.of(context).primaryColor;
return MaterialApp(
title: 'Flutter layout demo',
home: Scaffold(
appBar: AppBar(
title: Text('Flutter layout demo'),
),
body: Column(
children: [
Icon(Icons.image, size: 240.0, color: Colors.grey),
_titleSection(),
_buttonSection(color: color),
_textSection(),
],
),
),
);
}
Widget _titleSection() {
return Container(
padding: const EdgeInsets.all(32),
child: Row(
children: [
Expanded(
child: Column(
crossAxisAlignment: CrossAxisAlignment.start,
children: [
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'),
],
),
);
}
Widget _buttonSection({@required Color color}) {
return Container(
child: Row(
mainAxisAlignment: MainAxisAlignment.spaceEvenly,
children: [
_buttonColumn(color, Icons.call, 'CALL'),
_buttonColumn(color, Icons.near_me, 'ROUTE'),
_buttonColumn(color, Icons.share, 'SHARE'),
],
),
);
}
Column _buttonColumn(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 _textSection() {
return 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,
),
);
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment