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

A Flutter package for building custom skeleton widgets to mimic the page's layout while loading. This package is fork from 'skeletons' package and migrate it to support flutter version 3.22.

example/lib/main.dart

import 'package:example/home.dart';
import 'package:flutter/material.dart';

void main() {
  runApp(const MyApp());
}

class MyApp extends StatelessWidget {
  const MyApp({super.key});

  @override
  Widget build(BuildContext context) {
    return MaterialApp(
      title: 'Skeletons Package Examples',
      theme: ThemeData(
        primarySwatch: Colors.blue,
      ),
      home: const HomePage(),
    );
  }
}
2
likes
130
points
82
downloads

Publisher

unverified uploader

Weekly Downloads

A Flutter package for building custom skeleton widgets to mimic the page's layout while loading. This package is fork from 'skeletons' package and migrate it to support flutter version 3.22.

Repository (GitHub)
View/report issues

Documentation

API reference

License

BSD-3-Clause (license)

Dependencies

flutter

More

Packages that depend on skeletonsplus