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,
    );
  }
}
127
likes
140
pub points
94%
popularity

Publisher

verified publisherthenifemi.com

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

Repository (GitHub)
View/report issues

Documentation

API reference

License

MIT (LICENSE)

Dependencies

flutter, flutter_hooks, percent_indicator

More

Packages that depend on flutter_polls