This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import 'dart:convert' show utf8; | |
import 'dart:convert' show json; | |
import 'dart:io'; | |
class SlackMessage { | |
final String? inChannel; | |
final String? message; | |
const SlackMessage({ |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
[][(![]+[])[+[]]+(![]+[])[!+[]+!+[]]+(![]+[])[+!+[]]+(!![]+[])[+[]]][([][(![]+[])[+[]]+(![]+[])[!+[]+!+[]]+(![]+[])[+!+[]]+(!![]+[])[+[]]]+[])[!+[]+!+[]+!+[]]+(!![]+[][(![]+[])[+[]]+(![]+[])[!+[]+!+[]]+(![]+[])[+!+[]]+(!![]+[])[+[]]])[+!+[]+[+[]]]+([][[]]+[])[+!+[]]+(![]+[])[!+[]+!+[]+!+[]]+(!![]+[])[+[]]+(!![]+[])[+!+[]]+([][[]]+[])[+[]]+([][(![]+[])[+[]]+(![]+[])[!+[]+!+[]]+(![]+[])[+!+[]]+(!![]+[])[+[]]]+[])[!+[]+!+[]+!+[]]+(!![]+[])[+[]]+(!![]+[][(![]+[])[+[]]+(![]+[])[!+[]+!+[]]+(![]+[])[+!+[]]+(!![]+[])[+[]]])[+!+[]+[+[]]]+(!![]+[])[+!+[]]]((!![]+[])[+!+[]]+(!![]+[])[!+[]+!+[]+!+[]]+(!![]+[])[+[]]+([][[]]+[])[+[]]+(!![]+[])[+!+[]]+([][[]]+[])[+!+[]]+(+[![]]+[][(![]+[])[+[]]+(![]+[])[!+[]+!+[]]+(![]+[])[+!+[]]+(!![]+[])[+[]]])[+!+[]+[+!+[]]]+(!![]+[])[!+[]+!+[]+!+[]]+(+(!+[]+!+[]+!+[]+[+!+[]]))[(!![]+[])[+[]]+(!![]+[][(![]+[])[+[]]+(![]+[])[!+[]+!+[]]+(![]+[])[+!+[]]+(!![]+[])[+[]]])[+!+[]+[+[]]]+([]+[])[([][(![]+[])[+[]]+(![]+[])[!+[]+!+[]]+(![]+[])[+!+[]]+(!![]+[])[+[]]]+[])[!+[]+!+[]+!+[]]+(!![]+[][(! |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import 'package:carousel_slider/carousel_slider.dart'; | |
import 'package:flutter/material.dart'; | |
import 'package:flutter_dotenv/flutter_dotenv.dart'; | |
import 'package:mapbox_gl/mapbox_gl.dart'; | |
import 'package:mapbox_navigation/constants/restaurants.dart'; | |
import 'package:mapbox_navigation/helpers/commons.dart'; | |
import 'package:mapbox_navigation/helpers/shared_prefs.dart'; | |
import 'package:mapbox_navigation/widgets/carousel_card.dart'; | |
class RestaurantsMap extends StatefulWidget { |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// Ensure all permissions are collected for Locations | |
Location _location = Location(); | |
bool? _serviceEnabled; | |
PermissionStatus? _permissionGranted; | |
_serviceEnabled = await _location.serviceEnabled(); | |
if (!_serviceEnabled) { | |
_serviceEnabled = await _location.requestService(); | |
} |
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import 'package:flutter/material.dart'; | |
import 'package:flutter/services.dart'; | |
import 'package:flutter_barcode_scanner/flutter_barcode_scanner.dart'; | |
import 'package:iitg_idcard_scanner/functions/checkRoll.dart'; | |
import 'package:iitg_idcard_scanner/globals/myColors.dart'; | |
import 'package:iitg_idcard_scanner/globals/myFonts.dart'; | |
import 'package:iitg_idcard_scanner/globals/mySpaces.dart'; | |
import 'package:iitg_idcard_scanner/pages/showScanDetails.dart'; | |
class ScanNow extends StatefulWidget { |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import 'package:flutter/material.dart'; | |
class MySpaces { | |
//vertical gaps | |
static const Widget vSmallestGapInBetween = SizedBox(height: 6); | |
static const Widget vGapInBetween = SizedBox(height: 12); | |
static const Widget vSmallGapInBetween = SizedBox(height: 20); | |
static const Widget vMediumGapInBetween = SizedBox(height: 30); | |
static const Widget vLargeGapInBetween = SizedBox(height: 40); |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import 'package:flutter/material.dart'; | |
class MyFonts{ | |
Text largeTitle(text, color){ | |
return Text(text,style: TextStyle(fontFamily: 'poppins-bold', fontSize: 34, color: color),); | |
} | |
Text title1(text, color){ | |
return Text(text,style: TextStyle(fontFamily: 'poppins-semi', fontSize: 22, color: color),); | |
} |