flutter_skeleton 0.1.0+1 copy "flutter_skeleton: ^0.1.0+1" to clipboard
flutter_skeleton: ^0.1.0+1 copied to clipboard

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

example/lib/main.dart

import 'package:flutter/material.dart';

import './card_list_skeleton_demo.dart';
import './card_skeleton_demo.dart';
import './list_skeleton_demo.dart';

void main() => runApp(MyApp());

class MyApp extends StatelessWidget {
  @override
  Widget build(BuildContext context) {
    return MaterialApp(
      title: 'Skeleton Demo',
      theme: ThemeData(
          primarySwatch: Colors.blue, dividerColor: Color(0xFFebebeb)),
      home: MyHomePage(),
    );
  }
}

class MyHomePage extends StatelessWidget {
  MyHomePage({Key key}) : super(key: key);

  @override
  Widget build(BuildContext context) {
    TextStyle textStyle = TextStyle(color: Colors.white, fontSize: 16.0);
    return Scaffold(
      appBar: AppBar(title: Text('Skeleton Demo')),
      body: Container(
        width: double.infinity,
        padding: EdgeInsets.all(16.0),
        child: Column(
          crossAxisAlignment: CrossAxisAlignment.stretch,
          children: <Widget>[
            RaisedButton(
              color: Colors.blue,
              child: Text("List Skeleton", style: textStyle),
              onPressed: () {
                Navigator.of(context)
                    .push(MaterialPageRoute(builder: (context) {
                  return ListSkeletonDemo();
                }));
              },
            ),
            RaisedButton(
              color: Colors.blue,
              child: Text("Card Skeleton", style: textStyle),
              onPressed: () {
                Navigator.of(context)
                    .push(MaterialPageRoute(builder: (context) {
                  return CardSkeletonDemo();
                }));
              },
            ),
            RaisedButton(
              color: Colors.blue,
              child: Text("Card List Skeleton", style: textStyle),
              onPressed: () {
                Navigator.of(context)
                    .push(MaterialPageRoute(builder: (context) {
                  return CardListSkeletonDemo();
                }));
              },
            ),
          ],
        ),
      ),
    );
  }
}
34
likes
40
pub points
66%
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

Apache-2.0 (LICENSE)

Dependencies

flutter

More

Packages that depend on flutter_skeleton