dr_duke_theme 0.0.1 copy "dr_duke_theme: ^0.0.1" to clipboard
dr_duke_theme: ^0.0.1 copied to clipboard

Dr. Duke Theme across all flutter applications.

Dr. Duke Theme #

design system provides a set of reusable styles and components for consistent and efficient app development. It includes predefined colors, typography, spacing, shadows, and radius values to maintain a cohesive visual language across our apps.

Access #

Access the predefined styles and components through the DukeTheme instance:

Colors: duketheme.color
Typography: duketheme.typography
Spacing: duketheme.spacing
Radius: duketheme.radius
Shadows: duketheme.shadow
Size: duketheme.size

Usage #

import 'package:dr_duke_shared/style/theme/theme.dart';

Container(
  height: context.duketheme.size.xs,
  margin: context.duketheme.spacing.xd,
  decoration: BoxDecoration(
        borderRadius: BorderRadius.circular(context.duketheme.radius.lg),
        color: context.duketheme.color.primary,
        boxShadow: [context.dukeTheme.shadow.cardShadow],
      ),
  child: Text(
         'Hello World!',
         style: context.duketheme.typography.headline,
         ),
  ),


0
likes
140
points
16
downloads

Publisher

unverified uploader

Weekly Downloads

Dr. Duke Theme across all flutter applications.

Repository (GitHub)
View/report issues

Documentation

API reference

License

Apache-2.0 (license)

Dependencies

flutter

More

Packages that depend on dr_duke_theme