A flutter package the provides a widget for ChiSpend marketplace.

Requirement

  • Android Support: SDK 19+ or 20+
  • IOS Support: 9.0+

Feature

  • Access to ChiSpend marketplace using webview.
  • Full ability to customise widget theme and colour.

Usage

class ChiSpendExample extends StatelessWidget {
  const ChiSpendExample({Key? key}) : super(key: key);

  @override
  Widget build(BuildContext context) {
    return ChiSpendWidget(
      primaryColor: Colors.green,
      chiSpendTheme: ChiSpendTheme.royal,
      maxAmountInUSD: 1000,
      onMessageReceived: (v) {
        print(v);
      },
    );
  }
}

Screenshot_20221004-170738 Screenshot_20221004-171219 Screenshot_20221004-170946

Additional information

Please refer to webview package if any issue is encountered.

Libraries

chispend_widget