flutter_polls 0.1.6 flutter_polls: ^0.1.6 copied to clipboard
Customizable Polls for Flutter. Simple, easy to use and highly customizable.
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,
);
}
}