Skip to content

tomavelev/common_flutter_widgets

Repository files navigation

Getting started:

pubspec.yaml:

  common_flutter_widgets:
    git: https://github.com/tomavelev/common_flutter_widgets.git

//hello world:

  @override
  Widget build(BuildContext context) => CApp(
        home: CScaffold(
            body: Padding(
          padding: const EdgeInsets.all(8.0),
          child: Column(
            crossAxisAlignment: CrossAxisAlignment.stretch,
            children: [
              CInkWell(
                child: const Text("data"),
                onPressed: () {},
              ),
            ],
          ),
        )),
      );

Common Abstraction over Material and Cupertino widgets

App

Page

Scaffold

Item Picker

Text Field

Text Button

Elevated Button

About

No description, website, or topics provided.

Resources

License

Stars

0 stars

Watchers

1 watching

Forks

Releases

No releases published

Packages

 
 
 

Contributors