flutter_whatsapp_stickers 1.0.1+5 flutter_whatsapp_stickers: ^1.0.1+5 copied to clipboard
Flutter plugin for adding WhatsApp Stickers within your flutter app.
import 'package:flutter/material.dart';
import 'package:whatsapp_stickers_example/information.dart';
import 'package:whatsapp_stickers_example/static.dart';
void main() => runApp(MyApp());
class MyApp extends StatelessWidget {
final String title = 'WhatsApp Stickers Demo';
@override
Widget build(BuildContext context) {
return MaterialApp(
title: title,
home: DefaultTabController(
length: 2,
child: Scaffold(
appBar: AppBar(
title: Text(title),
bottom: TabBar(
tabs: [
Tab(text: "Information"),
Tab(text: "Sticker Packs"),
],
),
),
body: TabBarView(
children: [
WhatsAppInformation(),
StaticContent(),
],
),
),
),
);
}
}