Skip to content

Instantly share code, notes, and snippets.

@wendreof
Created December 4, 2021 11:33
Show Gist options
  • Save wendreof/51d1717ffec45f9b8211e813b8578d82 to your computer and use it in GitHub Desktop.
Save wendreof/51d1717ffec45f9b8211e813b8578d82 to your computer and use it in GitHub Desktop.
Activating Cider
# STEP 1 - Add this line below dev_dependencies on your pubspec.yaml file
# for the ones using null safety
dev_dependencies:
cider: ^0.1.0
# for the ones not using null safety
dev_dependencies:
cider: ^0.0.5
# STEP 2 - Download the new dependecies
flutter pub get
# STEP 3 - Exporting the path
export PATH="$PATH":"$HOME/.pub-cache/bin"
# STEP 4 - Activating Cider
pub global activate cider
# That's it for now
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment