v1.0.1polls
एक फ्लटर विजेट जो पोल के लिए है, यह ट्विटर पोल सिस्टम की नकल करता है, आपको केवल अपने डेटा को पोल में जोड़ना है, यह वोटिंग और विजुअलाइजेशन की अनुमति देता है।
109लाइक 7630-दिन डाउनलोड50Pub अंक
प्लेटफ़ॉर्म डेटा नहीं
मतदान प्रक्रियाओं के लिए एक फ्लटर पैकेज, उदाहरण के लिए चुनाव।
{"sdk":"flutter"}^4.2.2^2.0.3^1.1.0{"sdk":"flutter"}यह अंग्रेज़ी मूल स्नैपशॉट है। नवीनतम सामग्री GitHub पर देखें।
| Voting | Not Voted Yet | Voted |
|---|---|---|
| https://raw.githubusercontent.com/samuelezedi/polls/master/example/assets/3.gif | https://raw.githubusercontent.com/samuelezedi/polls/master/example/assets/1.jpeg | https://raw.githubusercontent.com/samuelezedi/polls/master/example/assets/2.jpeg |
Basic:
import 'package:polls/polls.dart';
Polls(
children: [
// This cannot be less than 2, else will throw an exception
Polls.options(title: 'Cairo', value: option1),
Polls.options(title: 'Mecca', value: option2),
Polls.options(title: 'Denmark', value: option3),
Polls.options(title: 'Mogadishu', value: option4),
],
question: Text('What is the capital of Egypt'),
currentUser: this.user,
creatorID: this.creator,
voteData: usersWhoVoted,
userChoice: usersWhoVoted[this.user],
onVoteBackgroundColor: Colors.blue,
leadingBackgroundColor: Colors.blue,
backgroundColor: Colors.white,
onVote: (choice) {
setState(() {
this.usersWhoVoted[this.user] = choice;
});
if (choice == 1) {
setState(() {
option1 += 1.0;
});
}
if (choice == 2) {
setState(() {
option2 += 1.0;
});
}
if (choice == 3) {
setState(() {
option3 += 1.0;
});
}
if (choice == 4) {
setState(() {
option4 += 1.0;
});
}
},
);
Polls(
viewType: PollsType.creator
);
Polls(
viewType: PollsType.voter
);
Polls(
viewType: PollsType.readOnly
);
Apparently, I have built 2 apps that required user voting processes, twice I had to implement same code on different apps. I also had to share the code with a friend, well I thought it would not be a bad idea to create a package off it, cause at this time there was no polls widget package on pub.dev