初步优化项目结构

This commit is contained in:
toly
2021-09-26 20:50:13 +08:00
parent f16d031417
commit 29a985e1b1
535 changed files with 366 additions and 359 deletions

View File

@@ -0,0 +1,130 @@
import 'package:flutter/material.dart';
import 'package:flutter_unit/app/utils/convert.dart';
import 'package:flutter_unit/painter_system/gallery_factory.dart';
import 'package:flutter_unit/components/permanent/color_wrapper.dart';
/// create by 张风捷特烈 on 2020/11/28
/// contact me by email 1981462002@qq.com
/// 说明:
class GalleryCardItem extends StatelessWidget {
final GalleryInfo galleryInfo;
final int count;
GalleryCardItem({
Key? key,
required this.galleryInfo,
this.count = 0,
}) : super(key: key);
@override
Widget build(BuildContext context) {
return Card(
shape: RoundedRectangleBorder(
borderRadius: BorderRadius.all(Radius.circular(20))),
child: Container(
height: double.maxFinite,
alignment: Alignment.topCenter,
child: Column(
children: [
Hero(
tag: galleryInfo.name,
child: Container(
height: 160,
decoration: BoxDecoration(
image: DecorationImage(
fit: BoxFit.cover,
image: AssetImage(galleryInfo.image)),
borderRadius: BorderRadius.only(
topLeft: Radius.circular(20),
topRight: Radius.circular(20),
))
// color: Colors.green,
),
),
Padding(
padding: const EdgeInsets.only(
top: 20, left: 15, right: 15, bottom: 10),
child: Row(
children: [
Text(
galleryInfo.name,
style: TextStyle(
fontSize: 24,
fontWeight: FontWeight.bold,
shadows: [
Shadow(
color: Theme.of(context).primaryColor,
offset: const Offset(.2, .2),
blurRadius: .5)
]),
),
Spacer(),
WrapColor(
radius: 6,
padding:
EdgeInsets.only(left: 6, right: 6, top: 2, bottom: 3),
child: Text(
"$count",
style: TextStyle(
fontWeight: FontWeight.bold,
color: Colors.white,
fontSize: 12),
),
),
],
),
),
Padding(
padding: const EdgeInsets.only(left: 15, right: 15, top: 10),
child: Text(
galleryInfo.info,
style: TextStyle(color: Colors.grey, shadows: [
Shadow(
color: Theme.of(context).primaryColor,
offset: const Offset(.2, .2),
blurRadius: .5)
]),
),
)
],
),
decoration: BoxDecoration(
color: Colors.white,
borderRadius: BorderRadius.all(
Radius.circular(20),
))),
);
}
}
class GalleryInfo {
final int count;
final String name;
final String info;
final String image;
final String router;
GalleryType get type {
GalleryType galleryType = GalleryType.base;
Convert.galleryTypeMap.forEach((key, value) {
if (value == name) {
galleryType = key;
}
});
return galleryType;
}
const GalleryInfo(
{this.count = 0,required this.name,required this.info,required this.image,required this.router});
factory GalleryInfo.fromJson(Map<String, dynamic> map) {
return GalleryInfo(
count: map['count'] ?? 0,
name: map["name"] ?? "",
image: map["image"] ?? "assets/images/draw_bg4.webp",
router: map["router"] ?? "",
info: map["info"] ?? "");
}
}