buildWidgetUI method
Implementation
Widget buildWidgetUI() {
return SizedBox(
height: widget.widgetHeight,
child: Hero(
tag: "bootpayWidgetWebView",
transitionOnUserGestures: true,
child: platformWebViewWidget()
)
);
// return widget.firstPageLoad == false ? skeletonWidget() : SizedBox(
// height: widget.widgetHeight,
// child: Hero(
// tag: "bootpayWidgetWebView",
// transitionOnUserGestures: true,
// child: platformWebViewWidget()
// )
// );
}