A modern Flutter UI component library that provides reusable, customizable, and consistent widgets for building beautiful applications faster.
- Reusable components
- Consistent visual design
- Faster UI development
- Flutter SDK
- Dart SDK
Add NettUI to your project:
flutter pub add nett_uiImport the package:
import "package:nett_ui/nett_ui.dart";import "package:flutter/material.dart";
import "package:nett_ui/nett_ui.dart";
void main() {
runApp(const MyApp());
}
class MyApp extends StatelessWidget {
const MyApp({super.key});
@override
Widget build(BuildContext context) {
return NTheme(
data: lightTheme,
child: MaterialApp(
title: "NettUI Demo",
home: Scaffold(
body: Center(
child: NButton(
onPressed: () {
debugPrint("Button clicked!");
},
child: const Text("Hello World"),
),
),
),
),
);
}
}Detailed documentation and examples are available on the www.nettui.org.
Contributions, bug reports, feature requests, and feedback are welcome.
This package is distributed under the MIT License. See the LICENSE file for details.