https://github.com/pattobrien/wireframe
https://github.com/pattobrien/wireframe
Last synced: 2 months ago
JSON representation
- Host: GitHub
- URL: https://github.com/pattobrien/wireframe
- Owner: pattobrien
- License: other
- Created: 2023-06-25T21:17:05.000Z (almost 2 years ago)
- Default Branch: main
- Last Pushed: 2023-06-25T21:17:06.000Z (almost 2 years ago)
- Last Synced: 2025-02-11T13:53:03.471Z (4 months ago)
- Language: Dart
- Size: 201 KB
- Stars: 1
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- Changelog: CHANGELOG.md
- License: LICENSE
Awesome Lists containing this project
README
Focus your attention on user experience by converting your beautiful
Flutter app into a low fidelity interface.## Usage
Simply import the package and use `wireframeTheme` however you'd like.
```dart
import 'package:flutter/material.dart';
import 'package:wireframe/wireframe.dart';class MyApp extends StatelessWidget {
const MyApp({super.key});@override
Widget build(BuildContext context) {
return MaterialApp(
theme: wireframeTheme, // use wireframeTheme directly
...
);
}
}```