Created
July 19, 2020 10:30
-
-
Save nikhilmufc7/f55dd11cdff88dbc564cbc0db69b3d62 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import 'dart:async'; | |
import 'package:flutter/material.dart'; | |
import 'package:flutter_inapp_purchase/flutter_inapp_purchase.dart'; | |
class PremiumScreen extends StatefulWidget { | |
@override | |
_PremiumScreenState createState() => _PremiumScreenState(); | |
} | |
class _PremiumScreenState extends State<PremiumScreen> { | |
StreamSubscription _conectionSubscription; | |
List<IAPItem> _items = []; | |
List<PurchasedItem> _purchases = []; | |
@override | |
Widget build(BuildContext context) { | |
return Scaffold( | |
backgroundColor: Colors.white, | |
body: Container(), | |
); | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment