图片加载修复

hmxc
小赖 4 years ago
parent de52a4f5d0
commit 61e9dd5666

@ -41,7 +41,7 @@ class ActivityCard extends StatelessWidget {
firstPath == null firstPath == null
? SizedBox() ? SizedBox()
: Hero( : Hero(
tag: API.image(firstPath), tag: firstPath,
child: Material( child: Material(
color: Colors.grey, color: Colors.grey,
child: FadeInImage.assetNetwork( child: FadeInImage.assetNetwork(

@ -1,5 +1,6 @@
import 'dart:math'; import 'dart:math';
import 'package:akuCommunity/model/common/img_model.dart';
import 'package:flutter/cupertino.dart'; import 'package:flutter/cupertino.dart';
import 'package:flutter/material.dart'; import 'package:flutter/material.dart';
@ -65,9 +66,9 @@ class _ChatCardState extends State<ChatCard> {
borderRadius: BorderRadius.circular(8.w), borderRadius: BorderRadius.circular(8.w),
), ),
onPressed: () { onPressed: () {
Get.to( BeeImagePreview.toPath(
BeeImagePreview.path(path: widget.model.imgUrls.first.url), path: ImgModel.first(widget.model.imgUrls),
opaque: false, tag: ImgModel.first(widget.model.imgUrls),
); );
}, },
child: ConstrainedBox( child: ConstrainedBox(

@ -1,3 +1,4 @@
import 'package:akuCommunity/model/common/img_model.dart';
import 'package:flutter/material.dart'; import 'package:flutter/material.dart';
import 'package:get/get.dart'; import 'package:get/get.dart';
@ -76,16 +77,13 @@ class MyEventCard extends StatelessWidget {
? SizedBox(height: 152.w) ? SizedBox(height: 152.w)
: GestureDetector( : GestureDetector(
onTap: () { onTap: () {
Get.to( BeeImagePreview.toPath(
BeeImagePreview.path( path: ImgModel.first(model.imgUrl),
path: model.imgUrl.first.url, tag: ImgModel.first(model.imgUrl),
tag: API.image(model.imgUrl.first.url),
),
opaque: false,
); );
}, },
child: Hero( child: Hero(
tag: API.image(model.imgUrl.first.url), tag: ImgModel.first(model.imgUrl),
child: Container( child: Container(
clipBehavior: Clip.antiAlias, clipBehavior: Clip.antiAlias,
decoration: BoxDecoration( decoration: BoxDecoration(
@ -94,7 +92,7 @@ class MyEventCard extends StatelessWidget {
), ),
child: FadeInImage.assetNetwork( child: FadeInImage.assetNetwork(
placeholder: R.ASSETS_IMAGES_PLACEHOLDER_WEBP, placeholder: R.ASSETS_IMAGES_PLACEHOLDER_WEBP,
image: API.image(model.imgUrl.first.url), image: API.image(ImgModel.first(model.imgUrl)),
width: 152.w, width: 152.w,
height: 152.w, height: 152.w,
fit: BoxFit.cover, fit: BoxFit.cover,

@ -1,3 +1,4 @@
import 'package:akuCommunity/model/common/img_model.dart';
import 'package:flutter/material.dart'; import 'package:flutter/material.dart';
import 'package:flustars/flustars.dart'; import 'package:flustars/flustars.dart';
@ -84,9 +85,9 @@ class NoticeCard extends StatelessWidget {
? SizedBox(height: 152.w) ? SizedBox(height: 152.w)
: GestureDetector( : GestureDetector(
onTap: () { onTap: () {
Get.to( BeeImagePreview.toPath(
BeeImagePreview.path(path: model.imgUrls.first.url), path: ImgModel.first(model.imgUrls),
opaque: false, tag: ImgModel.first(model.imgUrls),
); );
}, },
child: Container( child: Container(
@ -95,12 +96,15 @@ class NoticeCard extends StatelessWidget {
color: Colors.black12, color: Colors.black12,
borderRadius: BorderRadius.circular(8.w), borderRadius: BorderRadius.circular(8.w),
), ),
child: FadeInImage.assetNetwork( child: Hero(
placeholder: R.ASSETS_IMAGES_PLACEHOLDER_WEBP, tag: ImgModel.first(model.imgUrls),
image: API.image(model.imgUrls.first.url), child: FadeInImage.assetNetwork(
width: 152.w, placeholder: R.ASSETS_IMAGES_PLACEHOLDER_WEBP,
height: 152.w, image: ImgModel.first(model.imgUrls),
fit: BoxFit.cover, width: 152.w,
height: 152.w,
fit: BoxFit.cover,
),
), ),
), ),
), ),

@ -92,15 +92,11 @@ class _NoticeDetailPageState extends State<NoticeDetailPage> {
.map( .map(
(e) => GestureDetector( (e) => GestureDetector(
onTap: () { onTap: () {
Get.to( BeeImagePreview.toPath(path: e.url, tag: e.url);
BeeImagePreview.path(path: e.url),
opaque: false,
);
}, },
child: Hero( child: Hero(
tag: e.url, tag: e.url,
child: Container( child: Container(
height: 228.w,
clipBehavior: Clip.antiAlias, clipBehavior: Clip.antiAlias,
decoration: BoxDecoration( decoration: BoxDecoration(
borderRadius: BorderRadius.circular(8.w), borderRadius: BorderRadius.circular(8.w),

@ -32,7 +32,8 @@ class LoginUtil {
static bool get isNotLogin => !isLogin; static bool get isNotLogin => !isLogin;
static bool haveRoom(String name) { static bool haveRoom(String name) {
if (!name.contains(RegExp('访客邀请|报事报修|建议咨询|生活缴费|物品出门|投诉表扬|我的访客|我的报修'))) return true; if (!name.contains(RegExp('访客邀请|报事报修|建议咨询|生活缴费|物品出门|投诉表扬|我的访客|我的报修|我的缴费')))
return true;
final appProvider = Provider.of<AppProvider>(Get.context, listen: false); final appProvider = Provider.of<AppProvider>(Get.context, listen: false);
if (appProvider.selectedHouse == null) { if (appProvider.selectedHouse == null) {
BotToast.showText(text: '请先添加房屋'); BotToast.showText(text: '请先添加房屋');

@ -29,10 +29,7 @@ class BeeGridImageView extends StatelessWidget {
itemBuilder: (context, index) { itemBuilder: (context, index) {
return GestureDetector( return GestureDetector(
onTap: () { onTap: () {
Get.to( BeeImagePreview.toPath(path: urls[index], tag: urls[index]);
BeeImagePreview.path(path: urls[index]),
opaque: false,
);
}, },
child: Hero( child: Hero(
tag: urls[index], tag: urls[index],

Loading…
Cancel
Save