empty_widget 0.0.1-hotfix copy "empty_widget: ^0.0.1-hotfix" to clipboard
empty_widget: ^0.0.1-hotfix copied to clipboard

outdated

Custom_Empty widget is flutter custom widget which is designed to notify user about some event.

example/lib/main.dart

import 'package:empty_widget/empty_widget.dart';
import 'package:flutter/material.dart';

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

class MyApp extends StatelessWidget {
  @override
  Widget build(BuildContext context) {
    return MaterialApp(
      title: 'Flutter Demo',
      theme: ThemeData(
        primarySwatch: Colors.blue,
      ),
      home: MyHomePage(title: 'Empty widget demo'),
    );
  }
}

class MyHomePage extends StatefulWidget {
  MyHomePage({Key key, this.title}) : super(key: key);

  final String title;

  @override
  _MyHomePageState createState() => _MyHomePageState();
}

class _MyHomePageState extends State<MyHomePage> {
  @override
  Widget build(BuildContext context) {
    return Scaffold(
      appBar: AppBar(
        title: Text(widget.title),
      ),
      body: Container(
        alignment: Alignment.center,
        child: EmptyListWidget(
            image: null,
            packageImage: PackageImage.Image_1,
            title: 'Title here',
            subTitle: 'Some text  here',
            titleTextStyle: Theme.of(context)
                .typography
                .dense
                .headline5
                .copyWith(color: Color(0xff9da9c7)),
            subtitleTextStyle: Theme.of(context)
                .typography
                .dense
                .bodyText1
                .copyWith(color: Color(0xffabb8d6))),
      ),
    );
  }
}
69
likes
0
points
342
downloads

Publisher

unverified uploader

Weekly Downloads

Custom_Empty widget is flutter custom widget which is designed to notify user about some event.

Repository (GitHub)
View/report issues

License

unknown (license)

Dependencies

flutter

More

Packages that depend on empty_widget