social_design_system 0.0.14 copy "social_design_system: ^0.0.14" to clipboard
social_design_system: ^0.0.14 copied to clipboard

Elegant and easy-to-use UI/UX design library for Flutter, crafted to enhance your app's aesthetics and user experience.

Social Design System #

Social design system is an Elegant and easy-to-use UI/UX design library for Flutter, crafted to enhance your app's aesthetics and user experience without learning anything. This is an open source project that you can fork and pr.

And again, there is nothing to learn. Just install the package and apply the theme to MaterialApp.

Getting started #

Please visit the Social Design System document website to learn more.

UI samples #

Comic Theme Sleek Theme Social Theme
ComicListViewComicListView x
ComicListView.builder ComicListView.builder x
ComicListView.separated ComicListView.separated x
Buttons Buttons x
Settings Settings x
TextField TextField Soical Theme x
WaveCarouseEntry WaveCarouseEntry BasicCarouseEntry BasicCarouseEntry RoundCarouseEntry RoundCarouseEntry

Usage #

Social Design System follows the principle of the Flutter programming style. You can just continue with Flutter coding without knowing how to apply the UI design.

For instance, SDS provides ComicTheme and you use it like below;

Theme(
    data: ComicTheme.of(context),
    child: const ListTile(
    title: Text('Item 1'),
    subtitle: Text('Subtitle 1'),
    leading: Icon(Icons.access_time),
    trailing: Icon(Icons.arrow_forward_ios),
    ),
),

As you know this is really the way how the Flutter goes.

You may use ComicTheme widget for short like below;

const ComicTheme(
    child: ListTile(
    title: Text('Item 2'),
    subtitle: Text('Subtitle 2'),
    leading: Icon(Icons.access_alarm),
    trailing: Icon(Icons.arrow_forward_ios),
    ),
),

For more details, please visit the Social Design System document website

Things to learn #

Comic theme #

  • Comic theme uses
    • outline with outline color.

Sleek theme #

  • Sleek theme uses
    • background color with primaryContainer.

Contribution #

  • Fork and PR.
  • Leave your issues on the git repo.

Coding Guideline #

  • Write a good example and description on the example app since we don't provide other documents.

  • In each screen, have;

    • Title as the name of widget/compoennt,
    • Widget of the UI on first of the body
    • And short description
    • And sample code
11
likes
0
pub points
53%
popularity

Publisher

verified publishersonub.com

Elegant and easy-to-use UI/UX design library for Flutter, crafted to enhance your app's aesthetics and user experience.

Homepage
Repository (GitHub)
View/report issues

License

unknown (LICENSE)

Dependencies

flutter, loop_page_view, rxdart, smooth_page_indicator

More

Packages that depend on social_design_system