sa_orange_lego 1.0.3 copy "sa_orange_lego: ^1.0.3" to clipboard
sa_orange_lego: ^1.0.3 copied to clipboard

orange template under simple architecture framework

lego project pub package

sa_orange_lego #

orange template under simple architecture lego framework.

Installation #

  1. open terminal in the lego project root directory, enter the following command for install cli. and create a new lego project if you don't have one.
flutter pub global activate lego_cli
lego create
  1. in terminal, enter the following command for add lego to project.
lego add sa_orange_lego

Usage #

Check check = CheckOrange.get();
print(check.toMap());

check.s000 = "hello";

CheckOrange.upsert(check);

Check check2 = CheckOrange.get();
print(check2.toMap());