flutter_waya 0.0.3  flutter_waya: ^0.0.3 copied to clipboard
flutter_waya: ^0.0.3 copied to clipboard
The Flutter UI library contains multiple custom components.
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 BaseScaffold(appBar: AppBar(title: Text('Waya Demo'), centerTitle: true), body: Column(children: <Widget>[],),);
  }
}