design_system_360

A Flutter design system package to streamline the UI development process with reusable components, custom themes, and accessible design patterns.

Features

  • Predefined themes (light)
  • Custom typography and color schemes
  • Reusable widgets like buttons, cards, etc.

Getting started

Add the following line to your pubspec.yaml file:

dependencies:
  design_system_360: ^1.0.0

Usage

import 'package:design_system_360/design_system_360.dart';

void main() { runApp(MaterialApp( theme: AppTheme.lightTheme, home: Scaffold( appBar: AppBar(title: const Text('Design System Example')), body: Center( child: AppButton( label: 'Click Me', onPressed: () => print('Button Pressed'), ), ), ), )); }

usage

Additional information

we want to improve it day by day