Skip to content

Instantly share code, notes, and snippets.

View shyjuzz's full-sized avatar
🎯
Focusing

Shyju M shyjuzz

🎯
Focusing
  • Cochin, Kerala
View GitHub Profile
[{
"QuestionText": "_______ controls the way in which the computer system functions and provides a means by which users can interact with the computer. ",
"CorrectOption": " The operating system"
},
{
"QuestionText": "The difference between people with access to computers and the Internet and those without this access is known as the:",
"CorrectOption": "digital divide."
},
{
"QuestionText": "Servers are computers that provide resources to other computers connected to a:",
import 'package:flutter/material.dart';
class BottomSheetDemo extends StatelessWidget {
@override
Widget build(BuildContext context) {
return new MaterialApp(
title: 'Flutter Demo',
theme: new ThemeData(
primarySwatch: Colors.blue,
),
import 'package:flutter/material.dart';
class CustomBottom extends StatefulWidget {
@override
AppState createState() => AppState();
}
class AppState extends State<CustomBottom> with SingleTickerProviderStateMixin {
TabController _controller;
import 'package:eventurbo/utils/fonts.dart';
import 'package:eventurbo/utils/images.dart';
import 'package:flutter/material.dart';
import 'package:qr_reader/qr_reader.dart';
class ParticipantCheckInUI extends StatefulWidget {
@override
_ParticipantCheckInUIState createState() => _ParticipantCheckInUIState();
}
{
"responseCode": 1085,
"message": "Question details found.",
"responseObject": [{
"isMandatory": true,
"qnMap": {
"question": "Which of our Quartz Line interests you?",
"qnPickLists": [{
"id": 70849,
"answerChoice": "Hanstone",
class EventAddParticipantsUI extends StatefulWidget {
final registration_event.ResponseObject participant;
EventAddParticipantsUI(this.participant);
@override
EventAddParticipantsUIState createState() =>
new EventAddParticipantsUIState();
class PhoneWidget extends StatefulWidget {
@override
_PhoneWidgetState createState() => _PhoneWidgetState();
}
class _PhoneWidgetState extends State<PhoneWidget> {
String _selectedCountryCode;
List<String> _countryCodes = ['+91', '+23'];
class Feed extends StatefulWidget {
Feed({this.firestore});
final Firestore firestore;
@override
_FeedState createState() => _FeedState();
}
class _FeedState extends State<Feed> {
class GradientText extends StatelessWidget {
final Shader linearGradient = LinearGradient(
colors: <Color>[Color(0xffDA44bb), Color(0xff8921aa)],
).createShader(Rect.fromLTWH(0.0, 0.0, 200.0, 70.0));
@override
Widget build(BuildContext context) {
return Center(child: Text(
class SilverAppBarWithTabBarScreen extends StatefulWidget {
@override
_SilverAppBarWithTabBarState createState() => _SilverAppBarWithTabBarState();
}
class _SilverAppBarWithTabBarState extends State<SilverAppBarWithTabBarScreen>
with SingleTickerProviderStateMixin {
TabController controller;
final items = List<String>.generate(100, (i) => "Item $i");