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.

39 lines
1.1 KiB

import 'package:flutter/material.dart';
import 'package:flutter/widgets.dart';
import 'package:recook/base/base_store_state.dart';
import 'package:recook/constants/header.dart';
import 'package:recook/constants/styles.dart';
import 'package:recook/widgets/custom_app_bar.dart';
class AboutUsPage extends StatefulWidget {
AboutUsPage({Key key}) : super(key: key);
@override
_AboutUsPageState createState() => _AboutUsPageState();
}
class _AboutUsPageState extends BaseStoreState<AboutUsPage> {
@override
Widget buildContext(BuildContext context, {store}) {
return Scaffold(
appBar: CustomAppBar(
themeData: AppThemes.themeDataGrey.appBarTheme,
title: "关于我们",
elevation: 0,
),
body: ListView(
physics: AlwaysScrollableScrollPhysics(),
children: <Widget>[
Container(
// padding: EdgeInsets.symmetric(vertical: 10),
child: Image.asset(
R.ASSETS_RECOOK_ABOUT_US_JPG_WEBP,
fit: BoxFit.fill,
),
)
],
),
);
}
}