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

discontinuedreplaced by: easy_design_system

Elegant UI/UX design library crafted specifically for building social like applications

Social Design System #

Social Design System(SDS) is an Elegant UI/UX library crafted specifically for building social like applications. This is an open source project that you can fork and make PR.

Features #

  • Design systems for Flutter app development
  • UI widgets

Getting started #

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

UI samples #

ComicListViewComicListView ComicListView.builder ComicListView.builder ComicListView.separated ComicListView.separated
WaveCarouseEntry WaveCarouseEntry BasicCarouseEntry BasicCarouseEntry RoundCarouseEntry RoundCarouseEntry
Buttons Buttons Settings Settings x

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: ComicThemeData.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

Contribution #

  • Fork and PR.
  • Leave your issues on the git repo.
12
likes
0
pub points
63%
popularity

Publisher

verified publishersonub.com

Elegant UI/UX design library crafted specifically for building social like applications

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