chispend_widget 0.0.1 chispend_widget: ^0.0.1 copied to clipboard
A flutter package for both android and ios that provides a widget that allows access to chispend marketplace.
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);
},
);
}
}
Additional information #
Please refer to webview package if any issue is encountered.