Skip to content

variantxx/nett-ui

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

1 Commit
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Nett UI

A modern Flutter UI component library that provides reusable, customizable, and consistent widgets for building beautiful applications faster.

Features

  • Reusable components
  • Consistent visual design
  • Faster UI development

Getting Started

Prerequisites

  • Flutter SDK
  • Dart SDK

Installation

Add NettUI to your project:

flutter pub add nett_ui

Import the package:

import "package:nett_ui/nett_ui.dart";

Usage

Basic Button

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"),
            ),
          ),
        ),
      ),
    );
  }
}

Documentation

Detailed documentation and examples are available on the www.nettui.org.

Contributing

Contributions, bug reports, feature requests, and feedback are welcome.

License

This package is distributed under the MIT License. See the LICENSE file for details.

About

A modern UI components library for Flutter.

Topics

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

 
 
 

Contributors

Languages