offline_first 0.1.0
offline_first: ^0.1.0 copied to clipboard
Offline first for Dart and Flutter
Dart Lang Package Boilerplate #
This package includes basic pubspec.yaml configuration file, required folders, and strict linting using pedantic package and my custom lints.
This boilerplate is for pure Dart packages without dependency on Flutter. If you want to create Flutter package use following command.
flutter create --template=package name
Get started #
-
Change
name,descriptionandhomepageinpubspec.yaml. -
Change package dependency name in the
example/pubspec.yamlaccording to your package name. -
Change your name in the
LICENSEfile. -
Put correct info into the
CHANGELOG.mdfile. -
Create
libfolder with implementation files.libfolder should contain a single Dart file with same name as your package and asrcfolder with implementation files.