flutter_polls 0.1.6 copy "flutter_polls: ^0.1.6" to clipboard
flutter_polls: ^0.1.6 copied to clipboard

Customizable Polls for Flutter. Simple, easy to use and highly customizable.

example/lib/main.dart

import 'package:flutter/material.dart';

import 'example_polls.dart';

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

class MyApp extends StatelessWidget {
  const MyApp({Key? key}) : super(key: key);

  // This widget is the root of your application.
  @override
  Widget build(BuildContext context) {
    return const MaterialApp(
      title: 'Flutter Polls 🗳',
      home: ExamplePolls(),
      debugShowCheckedModeBanner: false,
    );
  }
}
163
likes
150
points
1.44k
downloads

Publisher

verified publisherthenifemi.com

Weekly Downloads

Customizable Polls for Flutter. Simple, easy to use and highly customizable.

Repository (GitHub)

Documentation

API reference

License

MIT (license)

Dependencies

flutter, flutter_hooks, percent_indicator

More

Packages that depend on flutter_polls