aqua 1.1.2+7 copy "aqua: ^1.1.2+7" to clipboard
aqua: ^1.1.2+7 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
80
pub points
0%
popularity

Publisher

unverified uploader

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