finn_utils 0.0.1 copy "finn_utils: ^0.0.1" to clipboard
finn_utils: ^0.0.1 copied to clipboard

A Flutter plugin providing lightweight utility tools: HTTP client builder, local storage handler, and response settlement helper.

example/lib/main.dart

import 'package:flutter/material.dart';

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

class MyApp extends StatefulWidget {
  const MyApp({super.key});

  @override
  State<MyApp> createState() => _MyAppState();
}

class _MyAppState extends State<MyApp> {
  @override
  void initState() {
    super.initState();
  }

  @override
  Widget build(BuildContext context) {
    return MaterialApp(
      home: Scaffold(
        appBar: AppBar(title: const Text('Plugin example app')),
        body: Center(child: Text('Running on')),
      ),
    );
  }
}
0
likes
0
points
14
downloads

Publisher

verified publisherdigitwhale.com

Weekly Downloads

A Flutter plugin providing lightweight utility tools: HTTP client builder, local storage handler, and response settlement helper.

Homepage
Repository (GitHub)
View/report issues

License

unknown (license)

Dependencies

flutter, get_storage, http

More

Packages that depend on finn_utils