FLUTTER ECOSYSTEM

onatcipli/meet_network_image

一個包含 MeetNetworkImage 的 Dart 套件,具有 LoadingBuilder 與 ErrorBuilder,可從 URL 顯示影像。

meet_network_image 專案封面
Stars
10
Forks
8
最近推送(UTC)
2021年4月25日
專案狀態
未封存
Onat Çipli GitHub avatar
GITHUB User

Onat Çipli ↗

A Software Engineer who likes to help other developers problems and enjoys creating mobile and web application especially with Flutter and Dart.

Izmir, Turkey官方網站 ↗
語言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.