stick_it 1.0.0 stick_it: ^1.0.0 copied to clipboard
A Null safety fork of flutter_simple_sticker_view. Added documentation and optional rotation for the stickers.
import 'package:example/routes.dart';
import 'package:example/screens/home.dart';
import 'package:flutter/material.dart';
void main() {
runApp(MyApp());
}
class MyApp extends StatelessWidget {
// This widget is the root of your application.
@override
Widget build(BuildContext context) {
return MaterialApp(
title: 'Stick It Example App',
theme: ThemeData(
primarySwatch: Colors.pink,
),
initialRoute: Home.routeName,
routes: routes,
);
}
}