simple_code 3.4.0 copy "simple_code: ^3.4.0" to clipboard
simple_code: ^3.4.0 copied to clipboard

discontinued
outdated

Make Responsive, Development and InAppPurchases Faster and Easier

SimpleCode #

Utils Widgets #

ExpandedText

new ExpandedText(
  'data',
  minFontSize: 2,
),

ExpandedIcon

new ExpandedIcon(
  Icons.wifi,
),

AnimatedButton

new AnimatedButton(
  onTap: () {},
  scale: 1.3,
  angle: 30,
  offset: Offset(0, -50),
  opacity: 0.5,
  child: Container(
    width: 150,
    height: 150,
    color: Colors.red,
  ),
),

AnimatedTween

new AnimatedTween(
  offset: Offset(450, 0),
  scale: 4.5,
  angle: 250,
  delay: Duration(milliseconds: 1000),
  child: Container(
    width: 150,
    height: 150,
    color: Colors.red,
  ),
),

Simple Responsivity #

Responsivity izier
wsz = size in relation to prototype Width
hsz = size in relation to prototype Height
sz = min between wsz and hsz

Container(
    width: wsz(150),
    height: hsz(150),
    color: Colors.red,
),

You can change the standard screen size:
640 (height) and 360 (width) are the default Android screen size in Adobe XD.
Change this to the screen size used in the prototype.

SimpleCode.changeEmulatorSize(heigth: 640, width: 360);

Simple Navigator #

Navigator withoutContext and builder

SimpleNavigator.push(cupertinoPageRoute(Page()));
SimpleNavigator.pushNamed('/nextPage');
SimpleNavigator.showDialog(
  widget: Dialog(),
  withBlackBackground: false,
  barrierDismissible: false,
);

Navigator withCustomTransitions

SimpleNavigator.push(customPageRoute(
  NewPage(),
  curve: Curves.easeOutBack,
  duration: Duration(milliseconds: 600),
  transitions: [
    Transition.slide_from_top,
    Transition.slide_from_rigth,
  ],
));
enum Transition {
  fade_in,
  slide_from_bottom,
  slide_from_rigth,
  slide_from_left,
  slide_from_top,
  zoom_in,
}

Simple Utils #

Check if are in debug mode
Check if have internet connection

SimpleUtils.isDev
await SimpleUtils.internetConnection

Simple Billing #

Simple InAppPurchases with Cache

await SimpleBilling.init(
  onPurchaseUpdated: (String productId, bool isNewPurchase) {},
  productsId: allProductsIds,
);
SimpleBilling.buyProduct(productId, context: context);
SimpleBilling.checkPurchase(productId);
SimpleBilling.checkPurchases([productOneId, productTwoId]);
SimpleBilling.getPriceById(productId);
SimpleBilling.restorePurchases();
SimpleBilling.setFakePurchases({productId});

Simple RateMyApp #

await SimpleRateMyApp.init({
    int minDays = 7,
    int minLaunches = 10,
    int remindDays = 7,
    int remindLaunches = 10,
    void Function() onShowIOS = openIosRateDialog,
    void Function() onShowAndroid,
    bool Function() ruleToShow,
  });
SimpleRateMyApp.show();
SimpleRateMyApp.openIosRateDialog();
SimpleRateMyApp.openStore();
SimpleRateMyApp.dontShowMore();
SimpleRateMyApp.reset();

Getting Started #

return MaterialApp(
    navigatorKey: SimpleNavigator.key,
    home: new MyApp(),
);

or

SimpleNavigator.changeNavigatorKey(externalKey);
return MaterialApp(
    navigatorKey: externalKey,
    home: new MyApp(),
);
7
likes
0
pub points
26%
popularity

Publisher

unverified uploader

Make Responsive, Development and InAppPurchases Faster and Easier

Repository (GitHub)
View/report issues

License

unknown (LICENSE)

Dependencies

app_review, flutter, flutter_inapp_purchase, shared_preferences

More

Packages that depend on simple_code