nice_colors 2.1.0 nice_colors: ^2.1.0 copied to clipboard
Introducing NiceColors - your go-to solution for adding a touch of elegance to your Flutter projects!
import 'package:flutter/material.dart';
void main() {
runApp(const MainApp());
}
class MainApp extends StatelessWidget {
const MainApp({super.key});
@override
Widget build(BuildContext context) {
return const MaterialApp(
home: Scaffold(
body: Center(
child: Text('Hello World!'),
),
),
);
}
}