flutwid_ui 2.2.25 copy "flutwid_ui: ^2.2.25" to clipboard
flutwid_ui: ^2.2.25 copied to clipboard

A Flutter component generator tool.

example/main.dart

import 'package:flutter/material.dart';
import 'package:flutwid_ui/flutwid_ui.dart';

void main() {
  runApp(const MyApp());
}

class MyApp extends StatelessWidget {
  const MyApp({Key? key}) : super(key: key);

  @override
  Widget build(BuildContext context) {
    return MaterialApp(
      title: 'Flutwid UI Example',
      theme: ThemeData(
        primarySwatch: Colors.blue,
        useMaterial3: true,
      ),
      home: const MyHomePage(),
    );
  }
}

class MyHomePage extends StatelessWidget {
  const MyHomePage({Key? key}) : super(key: key);

  @override
  Widget build(BuildContext context) {
    return Scaffold(
      appBar: AppBar(
        title: const Text('Flutwid UI Example'),
      ),
      body: Center(
        child: Column(
          mainAxisAlignment: MainAxisAlignment.center,
          children: const [
            Text('Welcome to Flutwid UI'),
            SizedBox(height: 20),
            MyButton(),
          ],
        ),
      ),
    );
  }
}
1
likes
120
points
86
downloads

Publisher

unverified uploader

Weekly Downloads

A Flutter component generator tool.

Repository (GitHub)

Documentation

API reference

License

MIT (license)

Dependencies

args, flutter, path

More

Packages that depend on flutwid_ui