You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
58 lines
1.7 KiB
58 lines
1.7 KiB
import 'package:aku_community_manager/const/resource.dart';
|
|
import 'package:aku_community_manager/style/app_style.dart';
|
|
import 'package:aku_community_manager/tools/widget_tool.dart';
|
|
import 'package:aku_community_manager/ui/widgets/common/aku_back_button.dart';
|
|
import 'package:aku_community_manager/ui/widgets/common/aku_scaffold.dart';
|
|
import 'package:flutter/material.dart';
|
|
import 'package:aku_community_manager/tools/screen_tool.dart';
|
|
|
|
class ApplicationPage extends StatefulWidget {
|
|
ApplicationPage({Key key}) : super(key: key);
|
|
|
|
@override
|
|
_ApplicationPageState createState() => _ApplicationPageState();
|
|
}
|
|
|
|
class _ApplicationPageState extends State<ApplicationPage> {
|
|
@override
|
|
Widget build(BuildContext context) {
|
|
return AkuScaffold(
|
|
appBar: AppBar(
|
|
elevation: 0,
|
|
backgroundColor: Colors.white,
|
|
leading: SizedBox(
|
|
width: 89.w,
|
|
child: AkuBackButton(),
|
|
),
|
|
titleSpacing: 0,
|
|
title: Container(
|
|
margin: EdgeInsets.only(right: 37.w),
|
|
padding: EdgeInsets.symmetric(horizontal: 32.w),
|
|
height: 72.w,
|
|
child: Row(
|
|
children: [
|
|
Image.asset(
|
|
R.ASSETS_HOME_IC_SEARCH_PNG,
|
|
height: 40.w,
|
|
width: 40.w,
|
|
),
|
|
AkuBox.w(16),
|
|
Text(
|
|
'搜索应用',
|
|
style: TextStyle(
|
|
color: AppStyle.minorTextColor,
|
|
fontSize: 28.sp,
|
|
),
|
|
),
|
|
],
|
|
),
|
|
decoration: BoxDecoration(
|
|
color: Color(0xFFF9F9F9),
|
|
borderRadius: BorderRadius.circular(8.w),
|
|
),
|
|
),
|
|
),
|
|
);
|
|
}
|
|
}
|