onatcipli/meet_network_image
URL에서 이미지를 표시하는 MeetNetworkImage를 포함한 Dart 패키지로, LoadingBuilder와 ErrorBuilder가 있습니다.
- Stars
- 10
- Forks
- 8
- 최근 푸시(UTC)
- 2021. 4. 25.
- 프로젝트 상태
- 활성
언어DartObjective-CJava
사용 중인 의존성
의존성 목록 3 개
- flutter
{"sdk":"flutter"} - http
^0.12.0+2 - flutter_test개발 의존성
{"sdk":"flutter"}
원본 README
아래는 영문 원문 스냅샷입니다. 최신 내용은 GitHub에서 확인하세요.
README 펼치기 / 접기
meet_network_image
A dart package that shows an image from the url
also it has loadingBuilder to show specific
widgets when the image loading and it has errorBuilder
to show specific widget when error occur
CircularIndicator gif
MeetNetworkImage({
@required this.imageUrl,
@required this.loadingBuilder,
@required this.errorBuilder,
this.scale = 1.0,
this.height,
this.width,
this.color,
this.fit,
this.alignment = Alignment.center,
this.repeat = ImageRepeat.noRepeat,
this.semanticLabel,
this.centerSlice,
this.colorBlendMode,
this.excludeFromSemantics = false,
this.filterQuality = FilterQuality.low,
this.matchTextDirection = false,
this.gaplessPlayback = false,
})
Usage
MeetNetworkImage(
imageUrl:
"https://random.dog/3f62f2c1-e0cb-4077-8cd9-1ca76bfe98d5.jpg",
loadingBuilder: (context) => Center(
child: CircularProgressIndicator(),
),
errorBuilder: (context, e) => Center(
child: Text('Error appear!'),
),
)
Getting Started
This project is a starting point for a Dart package, a library module containing code that can be shared easily across multiple Flutter or Dart projects.
For help getting started with Flutter, view our online documentation, which offers tutorials, samples, guidance on mobile development, and a full API reference.