flutter_wired 0.0.1
flutter_wired: ^0.0.1 copied to clipboard
flutter_wired is a series of basic UI Elements that have a hand drawn look. These can be used for wire frames, mockups, or just the fun hand-drawn look.
example/lib/main.dart
import 'package:example/home_page.dart';
import 'package:flutter/material.dart';
void main() {
runApp(const MyApp());
}
class MyApp extends StatelessWidget {
const MyApp({super.key});
@override
Widget build(BuildContext context) {
return MaterialApp(
title: 'Flutter Demo',
theme: ThemeData(
primarySwatch: Colors.blue,
),
home: const HomePage(),
);
}
}