Skip to content

Instantly share code, notes, and snippets.

View sandeep0402's full-sized avatar

Sandeep Gupta sandeep0402

View GitHub Profile
@sandeep0402
sandeep0402 / main.dart
Last active June 3, 2020 06:22
Flutter login page sample
import 'package:flutter/cupertino.dart';
import 'package:flutter/material.dart';
import 'package:flutter/painting.dart';
void main() => runApp(MyApp());
class MyApp extends StatelessWidget {
@override
Widget build(BuildContext context) {
return MaterialApp(
@sandeep0402
sandeep0402 / Samfins
Last active March 7, 2018 06:53
Samfins Source code
contract Samfins is StandardToken, Ownable {
string public name = 'Samfins';
string public symbol = 'SAM';
uint8 public decimals = 18;
uint public INITIAL_SUPPLY = 400000000 * 10 ** 18;
// Keeps track of whether or not airdrop has been made to a particular address
mapping (address => bool) public airdrops;
function Samfins() public {