flutter_whatsapp_stickers 1.0.1+5 copy "flutter_whatsapp_stickers: ^1.0.1+5" to clipboard
flutter_whatsapp_stickers: ^1.0.1+5 copied to clipboard

PlatformAndroid

Flutter plugin for adding WhatsApp Stickers within your flutter app.

example/lib/main.dart

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(),
            ],
          ),
        ),
      ),
    );
  }
}
61
likes
130
pub points
71%
popularity

Publisher

unverified uploader

Flutter plugin for adding WhatsApp Stickers within your flutter app.

Repository (GitHub)
View/report issues

Documentation

API reference

License

BSD-3-Clause (LICENSE)

Dependencies

flutter, path_provider, platform

More

Packages that depend on flutter_whatsapp_stickers