|
@@ -40,7 +40,16 @@ class ListBlockPage extends StatelessWidget {
|
|
|
),
|
|
|
body: Stack(children: [
|
|
|
Container(
|
|
|
- decoration: BoxDecoration(color: Color(0xff078C84)),
|
|
|
+ decoration: BoxDecoration(
|
|
|
+ // color: Color(0xff078C84),
|
|
|
+ gradient: LinearGradient(
|
|
|
+ begin: Alignment.topCenter,
|
|
|
+ end: Alignment.bottomCenter,
|
|
|
+ colors: [
|
|
|
+ Color(0xff078C84),
|
|
|
+ Colors.white,
|
|
|
+ ]),
|
|
|
+ ),
|
|
|
),
|
|
|
Container(
|
|
|
decoration: BoxDecoration(
|
|
@@ -66,8 +75,8 @@ class ListBlockPage extends StatelessWidget {
|
|
|
mainAxisAlignment: MainAxisAlignment.spaceEvenly,
|
|
|
children: [
|
|
|
InkWell(
|
|
|
- onTap: () =>
|
|
|
- context.go("/list/listblock/search/${items[index]['type']}"),
|
|
|
+ onTap: () => context.go(
|
|
|
+ "/list/listblock/search/${items[index]['type']}"),
|
|
|
child: SizedBox(
|
|
|
width: 60,
|
|
|
height: 60,
|
|
@@ -88,8 +97,8 @@ class ListBlockPage extends StatelessWidget {
|
|
|
mainAxisAlignment: MainAxisAlignment.spaceEvenly,
|
|
|
children: [
|
|
|
InkWell(
|
|
|
- onTap: () =>
|
|
|
- context.go("/list/listblock/search/${items[index]['type']}"),
|
|
|
+ onTap: () => context.go(
|
|
|
+ "/list/listblock/search/${items[index]['type']}"),
|
|
|
child: SizedBox(
|
|
|
width: 60,
|
|
|
height: 60,
|