flutter_gruvbox_theme 0.1.0+2 copy "flutter_gruvbox_theme: ^0.1.0+2" to clipboard
flutter_gruvbox_theme: ^0.1.0+2 copied to clipboard

Retro groove theme for Flutter, based on the Gruvbox color scheme.

example/main.dart

// This is a simple example of how to use flutter_gruvbox_theme.
// For a more complete example, see `/example/full_example/`.
//
// To try this theme, create an empty flutter project and copy-paste the
// content of this file in your `main.dart`.
import 'package:flutter/material.dart';
import 'package:flutter_gruvbox_theme/flutter_gruvbox_theme.dart';

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

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

  @override
  Widget build(BuildContext context) {
    return MaterialApp(
      themeMode: ThemeMode.light, // Or [ThemeMode.dark]
      theme: GruvboxTheme.light(),
      darkTheme: GruvboxTheme.dark(),
      home: Scaffold(
        appBar: AppBar(title: const Text('Title')),
        body: const Center(child: Text('Example text.')),
      ),
    );
  }
}
1
likes
140
pub points
39%
popularity
screenshot

Publisher

verified publisheragro-nexus.com

Retro groove theme for Flutter, based on the Gruvbox color scheme.

Homepage
Repository (GitHub)
View/report issues

Documentation

API reference

Funding

Consider supporting this project:

pablo.jimpas.me
www.agro-nexus.com

License

MIT (license)

Dependencies

flutter

More

Packages that depend on flutter_gruvbox_theme