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.
aku_new_community/lib/widget/views/horizontal_image_view.dart

51 lines
1.5 KiB

import 'package:aku_new_community/const/resource.dart';
import 'package:aku_new_community/constants/saas_api.dart';
import 'package:aku_new_community/utils/headers.dart';
import 'package:aku_new_community/widget/picker/bee_image_preview.dart';
import 'package:flutter/material.dart';
import 'package:flutter/rendering.dart';
import 'package:flutter_screenutil/flutter_screenutil.dart';
class HorizontalImageView extends StatelessWidget {
final List<String?> urls;
HorizontalImageView(
this.urls, {
Key? key,
}) : super(key: key);
@override
Widget build(BuildContext context) {
if (urls.isEmpty) return 15.hb;
return Container(
height: 184.w + 32.w,
child: ListView.separated(
padding: EdgeInsets.all(16.w),
separatorBuilder: (_, __) => 16.wb,
scrollDirection: Axis.horizontal,
itemBuilder: (context, index) {
return GestureDetector(
onTap: () {
BeeImagePreview.toPath(path: urls[index], tag: urls[index]);
},
child: Hero(
tag: urls[index]!,
child: ClipRRect(
borderRadius: BorderRadius.circular(8.w),
child: FadeInImage.assetNetwork(
height: 184.w,
width: 184.w,
placeholder: R.ASSETS_IMAGES_PLACEHOLDER_WEBP,
image: SAASAPI.image(urls[index]),
fit: BoxFit.cover,
),
),
),
);
},
itemCount: urls.length,
),
);
}
}