shape_of_view 1.0.0+1 shape_of_view: ^1.0.0+1 copied to clipboard
Give a custom shape to any flutter widget, Material Design 2 ready
import 'package:flutter/material.dart';
import 'jacksman.dart';
void main() => runApp(MyApp());
class MyApp extends StatefulWidget {
@override
_MyAppState createState() => _MyAppState();
}
class _MyAppState extends State<MyApp> {
@override
Widget build(BuildContext context) {
return MaterialApp(
debugShowCheckedModeBanner: false,
home: Scaffold(
backgroundColor: Colors.grey[200],
body: JacksmanPage(),
),
);
}
}