flutter_nord_theme

Last updated:

0 purchases

flutter_nord_theme Image
flutter_nord_theme Images
Add to Cart

Description:

flutter 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>
copied to clipboard
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.')),
),
);
}
}
copied to clipboard
License #
This package is licensed under the MIT License.

License:

For personal and professional use. You cannot resell or redistribute these repositories in their original state.

Files In This Product:

Customer Reviews

There are no reviews.