aqua 1.2.5+3 copy "aqua: ^1.2.5+3" to clipboard
aqua: ^1.2.5+3 copied to clipboard

Utility classes/functions to help with UI development using the Flutter framework.

example/lib/main.dart

import 'package:flutter/material.dart';

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

class MyApp extends StatelessWidget {
  // This widget is the root of your application.
  @override
  Widget build(BuildContext context) {
    return MaterialApp(
      title: 'Aqua Usage',
      theme: ThemeData(
        primarySwatch: Colors.blue,
      ),
      home: AquaUsage(),
    );
  }
}

class AquaUsage extends StatefulWidget {
  @override
  AquaUsageState createState() => AquaUsageState();
}

class AquaUsageState extends State<AquaUsage> {
  Widget _buildAquaUsage(BuildContext context) {
    return ListView(
      children: [],
    );
  }

  @override
  Widget build(BuildContext context) => _buildAquaUsage(context);
}
6
likes
150
points
25
downloads

Publisher

unverified uploader

Weekly Downloads

Utility classes/functions to help with UI development using the Flutter framework.

Repository (GitHub)
View/report issues

Documentation

API reference

License

MIT (license)

Dependencies

collection, colorize, flutter, http, intl, shared_preferences

More

Packages that depend on aqua