tobias 2.0.0-nullsafety.3 tobias: ^2.0.0-nullsafety.3 copied to clipboard
A Flutter plugin for allowing users to authenticate or pay with native Android&iOS AliPay SDKs.
import 'package:flutter/material.dart';
void main() => runApp(new MyApp());
class MyApp extends StatefulWidget {
@override
_MyAppState createState() => new _MyAppState();
}
class _MyAppState extends State<MyApp> {
@override
Widget build(BuildContext context) {
return new MaterialApp(
home: new Scaffold(
appBar: new AppBar(
title: new Text('Tobias example'),
),
body: Container(),
),
);
}
}