flutter_waya 1.1.1 copy "flutter_waya: ^1.1.1" to clipboard
flutter_waya: ^1.1.1 copied to clipboard

outdated

The Flutter UI library contains multiple custom components,compatible with android,web,ios and MAC.

example/lib/main.dart

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

void main() => runApp(OverlayMaterial(
      title: 'Waya Demo',
      home: Home(),
    ));

class Home extends StatelessWidget {
  @override
  Widget build(BuildContext context) {
    return OverlayScaffold(
      appBarHeight: MediaQueryTools.getStatusBarHeight(),
      appBar: AppBar(title: Text('Waya Demo'), centerTitle: true),
      body: Column(
        mainAxisAlignment: MainAxisAlignment.center,
        children: <Widget>[
          AreaPicker(),
          Container(height: 100),
          DateTimePicker(
            unit: DateTimePickerUnit(year: 'Y', month: 'M'),
            sureTap: (date) {
              log(date);
            },
          ),
        ],
      ),
    );
  }
}
8
likes
0
pub points
76%
popularity

Publisher

unverified uploader

The Flutter UI library contains multiple custom components,compatible with android,web,ios and MAC.

Repository (GitHub)
View/report issues

License

unknown (LICENSE)

Dependencies

cookie_jar, crypto, dio, flutter, flutter_localizations, pull_to_refresh, synchronized

More

Packages that depend on flutter_waya