den_design_system 2510.0.1
den_design_system: ^2510.0.1 copied to clipboard
Discover DDS Flutter: A powerful package offering pre-built, customizable UI components for seamless, scalable Flutter app development. Elevate your projects today!
example/example.dart
import 'package:flutter/material.dart';
void main() {
runApp(MyExample());
}
class MyExample extends StatelessWidget {
@override
Widget build(BuildContext context) {
return MaterialApp(
debugShowCheckedModeBanner: false,
title: 'DDS Component Example',
theme: ThemeData(
primarySwatch: Colors.blue,
),
);
}
}