nb_utils 1.0.2
nb_utils: ^1.0.2 copied to clipboard
This package helps you daily usable function with ease. Just add nb_utils with its latest version and that's it you are ready to use.
example/lib/main.dart
import 'package:flutter/material.dart';
import 'package:nb_utils/nb_utils.dart';
void main() => runApp(MyApp());
class MyApp extends StatelessWidget {
@override
Widget build(BuildContext context) {
//
launchNewScreen(context, 'tag');
launchNewScreenWithNewTask(context, 'tag');
finish(context);
Color color = getColorFromHex('#FFFFF');
return MaterialApp(
title: 'Flutter Utils Example',
theme: ThemeData(
primarySwatch: Colors.blue,
),
);
}
}