// Copyright 2015 The Chromium Authors. All rights reserved. // Use of this source code is governed by a BSD-style license that can be // found in the LICENSE file. import 'package:flutter/material.dart'; class _ContactCategory extends StatelessWidget { _ContactCategory({ Key key, this.icon, this.children }) : super(key: key); final IconData icon; final List children; @override Widget build(BuildContext context) { final ThemeData themeData = Theme.of(context); return new Container( padding: const EdgeInsets.symmetric(vertical: 16.0), decoration: new BoxDecoration( border: new Border(bottom: new BorderSide(color: themeData.dividerColor)) ), child: new DefaultTextStyle( style: Theme.of(context).textTheme.subhead, child: new Row( crossAxisAlignment: CrossAxisAlignment.start, children: [ new Container( padding: const EdgeInsets.symmetric(vertical: 24.0), width: 72.0, child: new Icon(icon, color: themeData.primaryColor) ), new Expanded(child: new Column(children: children)) ] ) ) ); } } class _ContactItem extends StatelessWidget { _ContactItem({ Key key, this.icon, this.lines, this.tooltip, this.onPressed }) : super(key: key) { assert(lines.length > 1); } final IconData icon; final List lines; final String tooltip; final VoidCallback onPressed; @override Widget build(BuildContext context) { final ThemeData themeData = Theme.of(context); final List columnChildren = lines.sublist(0, lines.length - 1).map((String line) => new Text(line)).toList(); columnChildren.add(new Text(lines.last, style: themeData.textTheme.caption)); final List rowChildren = [ new Expanded( child: new Column( crossAxisAlignment: CrossAxisAlignment.start, children: columnChildren ) ) ]; if (icon != null) { rowChildren.add(new SizedBox( width: 72.0, child: new IconButton( icon: new Icon(icon), color: themeData.primaryColor, onPressed: onPressed ) )); } return new Padding( padding: const EdgeInsets.symmetric(vertical: 16.0), child: new Row( mainAxisAlignment: MainAxisAlignment.spaceBetween, children: rowChildren ) ); } } class ContactsDemo extends StatefulWidget { static const String routeName = '/contacts'; @override ContactsDemoState createState() => new ContactsDemoState(); } enum AppBarBehavior { normal, pinned, floating } class ContactsDemoState extends State { static final GlobalKey _scaffoldKey = new GlobalKey(); final double _appBarHeight = 256.0; AppBarBehavior _appBarBehavior = AppBarBehavior.pinned; @override Widget build(BuildContext context) { return new Theme( data: new ThemeData( brightness: Brightness.light, primarySwatch: Colors.indigo, platform: Theme.of(context).platform, ), child: new Scaffold( key: _scaffoldKey, body: new CustomScrollView( slivers: [ new SliverAppBar( expandedHeight: _appBarHeight, pinned: _appBarBehavior == AppBarBehavior.pinned, floating: _appBarBehavior == AppBarBehavior.floating, actions: [ new IconButton( icon: const Icon(Icons.create), tooltip: 'Edit', onPressed: () { _scaffoldKey.currentState.showSnackBar(new SnackBar( content: const Text('This is actually just a demo. Editing isn\'t supported.') )); }, ), new PopupMenuButton( onSelected: (AppBarBehavior value) { setState(() { _appBarBehavior = value; }); }, itemBuilder: (BuildContext context) => >[ new PopupMenuItem( value: AppBarBehavior.normal, child: const Text('App bar scrolls away') ), new PopupMenuItem( value: AppBarBehavior.pinned, child: const Text('App bar stays put') ), new PopupMenuItem( value: AppBarBehavior.floating, child: const Text('App bar floats') ), ], ), ], flexibleSpace: new FlexibleSpaceBar( title: const Text('Ali Connors'), background: new Stack( children: [ new Image.asset( 'packages/flutter_gallery_assets/ali_connors.jpg', fit: BoxFit.cover, height: _appBarHeight, ), // This gradient ensures that the toolbar icons are distinct // against the background image. const DecoratedBox( decoration: const BoxDecoration( gradient: const LinearGradient( begin: const FractionalOffset(0.5, 0.0), end: const FractionalOffset(0.5, 0.30), colors: const [const Color(0x60000000), const Color(0x00000000)], ), ), ), ], ), ), ), new SliverList( delegate: new SliverChildListDelegate([ new _ContactCategory( icon: Icons.call, children: [ new _ContactItem( icon: Icons.message, tooltip: 'Send message', onPressed: () { _scaffoldKey.currentState.showSnackBar(new SnackBar( content: const Text('Pretend that this opened your SMS application.') )); }, lines: [ '(650) 555-1234', 'Mobile', ], ), new _ContactItem( icon: Icons.message, tooltip: 'Send message', onPressed: () { _scaffoldKey.currentState.showSnackBar(new SnackBar( content: const Text('In this demo, this button doesn\'t do anything.') )); }, lines: [ '(323) 555-6789', 'Work', ], ), new _ContactItem( icon: Icons.message, tooltip: 'Send message', onPressed: () { _scaffoldKey.currentState.showSnackBar(new SnackBar( content: const Text('Imagine if you will, a messaging application.') )); }, lines: [ '(650) 555-6789', 'Home', ], ), ], ), new _ContactCategory( icon: Icons.contact_mail, children: [ new _ContactItem( icon: Icons.email, tooltip: 'Send personal e-mail', onPressed: () { _scaffoldKey.currentState.showSnackBar(new SnackBar( content: const Text('Here, your e-mail application would open.') )); }, lines: [ 'ali_connors@example.com', 'Personal', ], ), new _ContactItem( icon: Icons.email, tooltip: 'Send work e-mail', onPressed: () { _scaffoldKey.currentState.showSnackBar(new SnackBar( content: const Text('This is a demo, so this button does not actually work.') )); }, lines: [ 'aliconnors@example.com', 'Work', ], ), ], ), new _ContactCategory( icon: Icons.location_on, children: [ new _ContactItem( icon: Icons.map, tooltip: 'Open map', onPressed: () { _scaffoldKey.currentState.showSnackBar(new SnackBar( content: const Text('This would show a map of San Francisco.') )); }, lines: [ '2000 Main Street', 'San Francisco, CA', 'Home', ], ), new _ContactItem( icon: Icons.map, tooltip: 'Open map', onPressed: () { _scaffoldKey.currentState.showSnackBar(new SnackBar( content: const Text('This would show a map of Mountain View.') )); }, lines: [ '1600 Amphitheater Parkway', 'Mountain View, CA', 'Work', ], ), new _ContactItem( icon: Icons.map, tooltip: 'Open map', onPressed: () { _scaffoldKey.currentState.showSnackBar(new SnackBar( content: const Text('This would also show a map, if this was not a demo.') )); }, lines: [ '126 Severyns Ave', 'Mountain View, CA', 'Jet Travel', ], ), ], ), new _ContactCategory( icon: Icons.today, children: [ new _ContactItem( lines: [ 'Birthday', 'January 9th, 1989', ], ), new _ContactItem( lines: [ 'Wedding anniversary', 'June 21st, 2014', ], ), new _ContactItem( lines: [ 'First day in office', 'January 20th, 2015', ], ), new _ContactItem( lines: [ 'Last day in office', 'August 9th, 2015', ], ), ], ), ]), ), ], ), ), ); } }