crafted_ui 1.0.6 crafted_ui: ^1.0.6 copied to clipboard
Crafted_ui offers a set of UI components and resources that can be easily customized and adapted to suit your applications and design requirements.
import 'package:flutter/material.dart';
import 'package:crafted_ui/crafted_ui.dart';
import 'home.dart';
void main() {
runApp(MyApp());
}
class MyApp extends StatefulWidget {
@override
State<MyApp> createState() => _MyAppState();
}
class _MyAppState extends State<MyApp> {
@override
Widget build(BuildContext context) {
return CraftedThemeProvider(
appColor: AppColor(),
child: MaterialApp(
title: 'My App',
home: MyHomePage(),
),
);
}
}