neo_fade_ui 0.0.1 copy "neo_fade_ui: ^0.0.1" to clipboard
neo_fade_ui: ^0.0.1 copied to clipboard

Neo Fade UI - A modern Flutter UI component library with glass morphism, gradient effects, and customizable themes.

example/main.dart

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

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

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

  @override
  Widget build(BuildContext context) {
    return MaterialApp(
      home: NeoFadeTheme(
        data: NeoFadeThemeData.fromColors(
          primary: const Color(0xFF6366F1),
          secondary: const Color(0xFFF472B6),
          tertiary: const Color(0xFF22D3EE),
          brightness: Brightness.dark,
        ),
        child: Scaffold(
          backgroundColor: const Color(0xFF121212),
          body: Center(
            child: Column(
              mainAxisSize: MainAxisSize.min,
              children: [
                NeoButtonFilled(
                  label: 'Hello Neo Fade',
                  onPressed: () {},
                ),
                const SizedBox(height: 16),
                const NeoCardTopBorder(
                  child: Text('A glass card with a gradient top border'),
                ),
              ],
            ),
          ),
        ),
      ),
    );
  }
}
1
likes
160
points
107
downloads

Documentation

API reference

Publisher

verified publisherbasdevaan.nl

Weekly Downloads

Neo Fade UI - A modern Flutter UI component library with glass morphism, gradient effects, and customizable themes.

Repository (GitHub)
View/report issues

Topics

#ui #widget #glassmorphism #theme

License

MIT (license)

Dependencies

flutter, mesh_gradient

More

Packages that depend on neo_fade_ui