|
@@ -200,10 +200,10 @@ class SliverTopBar extends StatelessWidget {
|
|
Widget build(BuildContext context) {
|
|
Widget build(BuildContext context) {
|
|
double rpx = MediaQuery.of(context).size.width / 750;
|
|
double rpx = MediaQuery.of(context).size.width / 750;
|
|
return Stack(
|
|
return Stack(
|
|
- children: <Widget>[
|
|
|
|
|
|
+ children: [
|
|
Column(
|
|
Column(
|
|
mainAxisSize: MainAxisSize.min,
|
|
mainAxisSize: MainAxisSize.min,
|
|
- children: <Widget>[
|
|
|
|
|
|
+ children: [
|
|
Image.asset(
|
|
Image.asset(
|
|
"assets/images/temple.jpg",
|
|
"assets/images/temple.jpg",
|
|
width: 750 * rpx,
|
|
width: 750 * rpx,
|
|
@@ -215,7 +215,7 @@ class SliverTopBar extends StatelessWidget {
|
|
height: 120 * rpx,
|
|
height: 120 * rpx,
|
|
child: Row(
|
|
child: Row(
|
|
mainAxisAlignment: MainAxisAlignment.end,
|
|
mainAxisAlignment: MainAxisAlignment.end,
|
|
- children: <Widget>[
|
|
|
|
|
|
+ children: [
|
|
Container(
|
|
Container(
|
|
height: 80 * rpx,
|
|
height: 80 * rpx,
|
|
width: 330 * rpx,
|
|
width: 330 * rpx,
|
|
@@ -263,7 +263,7 @@ class SliverTopBar extends StatelessWidget {
|
|
padding: EdgeInsets.symmetric(horizontal: 30 * rpx),
|
|
padding: EdgeInsets.symmetric(horizontal: 30 * rpx),
|
|
child: Column(
|
|
child: Column(
|
|
crossAxisAlignment: CrossAxisAlignment.start,
|
|
crossAxisAlignment: CrossAxisAlignment.start,
|
|
- children: <Widget>[
|
|
|
|
|
|
+ children: [
|
|
Text(
|
|
Text(
|
|
"马友发",
|
|
"马友发",
|
|
style: TextStyle(
|
|
style: TextStyle(
|
|
@@ -291,9 +291,9 @@ class SliverTopBar extends StatelessWidget {
|
|
padding: EdgeInsets.symmetric(horizontal: 20 * rpx),
|
|
padding: EdgeInsets.symmetric(horizontal: 20 * rpx),
|
|
child: Row(
|
|
child: Row(
|
|
mainAxisAlignment: MainAxisAlignment.spaceBetween,
|
|
mainAxisAlignment: MainAxisAlignment.spaceBetween,
|
|
- children: <Widget>[
|
|
|
|
|
|
+ children: [
|
|
Row(
|
|
Row(
|
|
- children: <Widget>[
|
|
|
|
|
|
+ children: [
|
|
Icon(
|
|
Icon(
|
|
Icons.shop,
|
|
Icons.shop,
|
|
color: Color(0xffeacd3f),
|
|
color: Color(0xffeacd3f),
|
|
@@ -326,7 +326,7 @@ class SliverTopBar extends StatelessWidget {
|
|
padding: EdgeInsets.symmetric(
|
|
padding: EdgeInsets.symmetric(
|
|
horizontal: 20 * rpx, vertical: 10 * rpx),
|
|
horizontal: 20 * rpx, vertical: 10 * rpx),
|
|
child: Row(
|
|
child: Row(
|
|
- children: <Widget>[
|
|
|
|
|
|
+ children: [
|
|
Tag(
|
|
Tag(
|
|
text: "深圳",
|
|
text: "深圳",
|
|
),
|
|
),
|
|
@@ -343,7 +343,7 @@ class SliverTopBar extends StatelessWidget {
|
|
padding: EdgeInsets.symmetric(
|
|
padding: EdgeInsets.symmetric(
|
|
horizontal: 20 * rpx, vertical: 30 * rpx),
|
|
horizontal: 20 * rpx, vertical: 30 * rpx),
|
|
child: Row(
|
|
child: Row(
|
|
- children: <Widget>[
|
|
|
|
|
|
+ children: [
|
|
NumWithDesc(
|
|
NumWithDesc(
|
|
numm: "100.2w",
|
|
numm: "100.2w",
|
|
desc: "获赞",
|
|
desc: "获赞",
|
|
@@ -412,7 +412,7 @@ class NumWithDesc extends StatelessWidget {
|
|
return Padding(
|
|
return Padding(
|
|
padding: EdgeInsets.only(right: 20 * rpx),
|
|
padding: EdgeInsets.only(right: 20 * rpx),
|
|
child: Row(
|
|
child: Row(
|
|
- children: <Widget>[
|
|
|
|
|
|
+ children: [
|
|
Text(
|
|
Text(
|
|
numm,
|
|
numm,
|
|
style: TextStyle(
|
|
style: TextStyle(
|