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

An arctic, north-bluish theme for Flutter, based on the Nord theme.

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
90
pub points
54%
popularity

Publisher

unverified uploader

An arctic, north-bluish theme for Flutter, based on the Nord theme.

Repository (GitHub)
View/report issues

Documentation

API reference

License

BSD-3-Clause, MIT (LICENSE)

Dependencies

flutter

More

Packages that depend on flutter_nord_theme