simple_polls 1.0.1 copy "simple_polls: ^1.0.1" to clipboard
simple_polls: ^1.0.1 copied to clipboard

outdated

A simple polls widget is simple widget with language localizations.

simple_polls #

A simple polls widget is simple widget with language localizations.

Example #

for full example please view example/main.dart

SimplePollsWidget(
          model: PollFrameModel(
            title: Container(
              alignment: Alignment.centerLeft,
              child: Text(
                'This is the title of poll. This is the title of poll. This is the title of poll.',
                style: TextStyle(
                  fontSize: 14,
                  fontWeight: FontWeight.w500,
                ),
              ),
            ),
            totalPolls: 100,
            endTime: DateTime.now().toUtc().add(Duration(days: 10)),
            hasVoted: false,
            editablePoll: true,
            options: <PollOptions>[
              PollOptions(
                label: "Option 1",
                pollsCount: 40,
                isSelected: false,
                id: 1,
              ),
              PollOptions(
                label: "Option 2",
                pollsCount: 25,
                isSelected: false,
                id: 2,
              ),
              PollOptions(
                label: "Option 3",
                pollsCount: 35,
                isSelected: false,
                id: 3,
              ),
            ],
          ),
        )

Screenshots #

Allowed language codes are it,fr,es,gr,en where en is default.

This widget does not translate title and options, they should be translated by user.

Liked the work ? support me

18
likes
0
pub points
77%
popularity

Publisher

unverified uploader

A simple polls widget is simple widget with language localizations.

Repository (GitHub)
View/report issues

License

unknown (LICENSE)

Dependencies

flutter, timeago

More

Packages that depend on simple_polls