An open API service indexing awesome lists of open source software.

https://github.com/pattobrien/wireframe


https://github.com/pattobrien/wireframe

Last synced: 2 months ago
JSON representation

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
...
);
}
}

```