flutter_nord_theme 2.0.2 copy "flutter_nord_theme: ^2.0.2" to clipboard
flutter_nord_theme: ^2.0.2 copied to clipboard

outdated

Flutter theme using the Nord color palette.

flutter_nord_theme #

An arctic, north-bluish theme for Flutter. Based on the Nord theme. Warning: This is not an official theme (not made by Arctic Ice Studio).

Installing #

First, add this package to your Flutter project (see also Installation). In your pubspec.yaml, add flutter_nord_theme as a dependency:

dependencies:
  flutter_nord_theme: <lastest version>

Getting started #

Once the package is installed, you can pass either NordTheme.dark or NordTheme.light as a ThemeData to your app.

class MyApp extends StatelessWidget {
  @override
  Widget build(BuildContext context) {
    return MaterialApp(
      themeMode: ThemeMode.light, // Or [ThemeMode.dark]
      theme: NordTheme.light(),
      darkTheme: NordTheme.dark(),
      home: Scaffold(
        appBar: AppBar(title: Text('Title')),
        body: Center(child: Text('Example text.')),
      ),
    );
  }
}

License #

This package is licensed under the MIT License.

8
likes
70
pub points
49%
popularity

Publisher

unverified uploader

Flutter theme using the Nord color palette.

Repository (GitHub)
View/report issues

Documentation

API reference

License

BSD-3-Clause, MIT (LICENSE)

Dependencies

flutter

More

Packages that depend on flutter_nord_theme