flutter_skeleton 0.0.1 copy "flutter_skeleton: ^0.0.1" to clipboard
flutter_skeleton: ^0.0.1 copied to clipboard

outdated

Flutter skeleton screen for Android and iOS. Support List, Card and Card-List style. Support light and dark theme.

Flutter Skeleton #

[pub packages] | 中文说明

Flutter skeleton screen.

Example

Example

Example

Usage #

1. Depend

Add this to you package's pubspec.yaml file:

dependencies:
  flutter_skeleton: ^0.0.1

2. Install

Run command:

$ flutter packages get

3. Import

Import in Dart code:

import 'package:flutter_skeleton/flutter_skeleton.dart';

4. Display Widget

// list skeleton
ListSkeleton(
  config: SkeletonConfig(
    theme: SkeletonTheme.Light,
    isShowAvatar: false,
    isCircleAvatar: true,
    bottomLinesCount: 3,
    radius: 0.0,
  ),
);

// card skeleton
CardSkeleton(
  config: SkeletonConfig(
    theme: SkeletonTheme.Light,
    isShowAvatar: true,
    isCircleAvatar: false,
    bottomLinesCount: 2,
    radius: 16.0,
  ),
);

// card list skeleton
CardListSkeleton(
  config: SkeletonConfig(
    theme: SkeletonTheme.Dark,
    isShowAvatar: true,
    isCircleAvatar: true,
    bottomLinesCount: 2,
    radius: 0.0,
  ),
);

Example #

Example sources

Example APK

Example APK Download

34
likes
0
pub points
63%
popularity

Publisher

unverified uploader

Flutter skeleton screen for Android and iOS. Support List, Card and Card-List style. Support light and dark theme.

Repository (GitHub)
View/report issues

License

unknown (LICENSE)

Dependencies

flutter

More

Packages that depend on flutter_skeleton