nova_ui 1.0.0 copy "nova_ui: ^1.0.0" to clipboard
nova_ui: ^1.0.0 copied to clipboard

A modern Flutter UI framework with reusable widgets, design system components, and beautiful developer-friendly APIs.

example/lib/main.dart

import 'package:flutter/material.dart';
import 'package:nova_ui/nova_ui.dart';

void main() {
  runApp(const MyApp());
}

class MyApp extends StatelessWidget {
  const MyApp({super.key});

  @override
  Widget build(BuildContext context) {
    return MaterialApp(
      title: 'Nova UI Demo',
      home: Scaffold(
        appBar: AppBar(
          title: const Text('Nova UI Demo'),
        ),
        body: Center(
          child: Column(
            children: [
              NovaContainer(
                padding: const EdgeInsets.all(20),
                color: Colors.blue,
                borderRadius: BorderRadius.circular(16),
                child: const Text(
                  'Hello Nova UI',
                  style: TextStyle(
                    color: Colors.white,
                    fontSize: 18,
                  ),
                ),
              ),
              SizedBox(height: 10,),
              NovaTextField(
                hintText: 'Email',
                prefixIcon: const Icon(Icons.email),
              ),
              SizedBox(height: 10,),
              NovaButton(
                text: 'Login',
                onPressed: () {
                  debugPrint('Clicked');
                },
              ),
            ],
          ),
        ),
      ),
    );
  }
}
4
likes
0
points
264
downloads

Publisher

unverified uploader

Weekly Downloads

A modern Flutter UI framework with reusable widgets, design system components, and beautiful developer-friendly APIs.

Repository (GitHub)
View/report issues

Topics

#flutter #widget #ui #design-system #components

License

unknown (license)

Dependencies

flutter

More

Packages that depend on nova_ui