-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
d660c89
commit f2eea2e
Showing
16 changed files
with
290 additions
and
151 deletions.
There are no files selected for viewing
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
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
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
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
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
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
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,57 @@ | ||
| import 'package:flutter/material.dart'; | ||
|
|
||
| class AboutUs extends StatefulWidget { | ||
| const AboutUs({Key? key}) : super(key: key); | ||
|
|
||
| @override | ||
| State<AboutUs> createState() => _AboutUsState(); | ||
| } | ||
|
|
||
| const developers = [ | ||
| {'name': '乔治', 'title': '总技术负责人'}, | ||
| {'name': '阿正', 'title': '后端负责人'}, | ||
| {'name': '艾米莉娅', 'title': '后端开发'}, | ||
| {'name': '锋子', 'title': '前端开发'}, | ||
| {'name': 'master1lan', 'title': '前端开发'}, | ||
| {'name': '御坂吉米', 'title': '移动端开发'}, | ||
| {'name': '隔壁PM(Wing)', 'title': '产品经理'}, | ||
| {'name': 'UI-阿池', 'title': 'UI设计'}, | ||
| {'name': '梁心', 'title': 'LOGO设计'}, | ||
| ]; | ||
|
|
||
| class _AboutUsState extends State<AboutUs> { | ||
| @override | ||
| Widget build(BuildContext context) { | ||
| return Scaffold( | ||
| appBar: PreferredSize( | ||
| preferredSize: Size.fromHeight(270), | ||
| child: AppBar( | ||
| centerTitle: true, | ||
| flexibleSpace: Container( | ||
| height: double.maxFinite, | ||
| child: Image( | ||
| alignment: Alignment.topCenter, | ||
| image: AssetImage( | ||
| 'assets/logo.jpg'), | ||
| fit: BoxFit.cover, | ||
| ), | ||
| ), | ||
| ), | ||
| ), | ||
| body: ListView( | ||
| children: developers | ||
| .map((e) => ListTile( | ||
| leading: CircleAvatar( | ||
| child: Icon( | ||
| Icons.manage_accounts_rounded, | ||
| size: 24, | ||
| ), | ||
| ), | ||
| title: Text(e['title']!), | ||
| subtitle: Text(e['name']!), | ||
| )) | ||
| .toList(), | ||
| ), | ||
| ); | ||
| } | ||
| } |
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
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
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
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
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
Oops, something went wrong.