Giter VIP home page Giter VIP logo

simple_poll's Introduction

Buy Me A Coffee

simple_polls

simple_polls widget is polling widget with language localizations.

Liked my work ? support me

Example

for full example please view example/main.dart

SimplePollsWidget(
          onSelection: (PollFrameModel model, PollOptions selectedOptionModel) {
            print('Now total polls are : ' + model.totalPolls.toString());
            print('Selected option has label : ' + selectedOptionModel.label);
          },
          onReset: (PollFrameModel model) {
            print(
                'Poll has been reset, this happens only in case of editable polls');
          },
          optionsBorderShape: StadiumBorder(), //Its Default so its not necessary to write this line
          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

NOTE: 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.

simple_poll's People

Contributors

abhay-s-rawat avatar christian-leingang avatar

Stargazers

 avatar  avatar  avatar

Watchers

 avatar

simple_poll's Issues

How to get currently selected option

First thank you for this great package, it works exactly how I wanted and is easy to use.

My question is, please how do I get the Option object from the onSelection(){} method when the user selects an option.
I need the ID of the option to update it count at the backend.

Thank you.

Change Polls to votes

Please I think on the UI, it should be “votes” instead of “polls”.

Poll is the actual on-going event and when anyone selects an option, he or she has voted.

476FA824-98B6-44E1-827E-7CF551CB147F
E4AC1DAF-74D0-4C1B-B02F-5D54F113CD11

UI Recommendations

Just some UI recommendations

  1. Please can we move the "End Time" of the poll to the end just like the image attached? Below is the code where I change it alignment to spaceBetween

Inkedpoll ui_LI

`return Row(
mainAxisAlignment: MainAxisAlignment.spaceBetween ,
children: [
Flexible(
flex: 2,
child: Text(
model.totalPolls.toString() +
' ${polls_translation[languageCode]!}',
overflow: TextOverflow.ellipsis,
style: TextStyle(
fontSize: 12,
color: Colors.grey,
),
),
),

    ),
    Flexible(
      flex: 2,
      child: Text(
        model.endTime!.isBefore(DateTime.now().toUtc())
            ? polling_ended_translation[languageCode]!
            : '${ends_translation[languageCode]!}: ' +
                timeago.format(
                  model.endTime!,
                  allowFromNow: true,
                  locale: languageCode,
                ),
        overflow: TextOverflow.ellipsis,
        style: TextStyle(
          fontSize: 12,
          color: Colors.grey,
        ),
      ),
    ),

    /// This checks if post is editable and user has selected an option.
    /// If [model.editablePoll] evaluates to tue and [model.hasVoted] evaluates to true an 'undo' button will show up which on pressed will remove the option selection and lets user select an option again.
    /// If poll time expires undo button will not be visible.
    if ((model.editablePoll == true) &&
        (model.hasVoted == true) &&
        (model.endTime!.toUtc().isAfter(DateTime.now().toUtc()))) ...[
      Text(
        ' • ',
        overflow: TextOverflow.ellipsis,
        style: TextStyle(
          fontSize: 14,
          color: Colors.grey,
        ),
      ),
      Flexible(
        flex: 1,
        child: GestureDetector(
          child: Text(
            undo_poll_translation[languageCode]!,
            overflow: TextOverflow.ellipsis,
            style: TextStyle(
              color: Theme.of(context).primaryColor,
              fontSize: 13,
            ),
          ),
          onTap: () {
            onUndo();
          },
        ),
      ),
    ]
  ],
);`

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.