Skip to content

Instantly share code, notes, and snippets.

View theindianappguy's full-sized avatar
:octocat:
Working...

Sanskar Tiwari theindianappguy

:octocat:
Working...
View GitHub Profile
@theindianappguy
theindianappguy / signin.dart
Created May 12, 2020 06:06
SignIn Screen UI for ChatApp
import 'package:flutter/material.dart';
class SignIn extends StatefulWidget {
@override
_SignInState createState() => _SignInState();
}
class _SignInState extends State<SignIn> {
@theindianappguy
theindianappguy / widget.dart
Last active May 12, 2020 05:44
appBar for ChatApp
import 'package:flutter/material.dart';
Widget appBarMain(BuildContext context) {
return AppBar(
title: Image.asset(
"assets/images/logo.png",
height: 40,
),
elevation: 0.0,
centerTitle: false,
@theindianappguy
theindianappguy / GitCommitEmoji.md
Created May 1, 2020 07:17 — forked from parmentf/GitCommitEmoji.md
Git Commit message Emoji

Image Picker plugin for Flutter

pub package

A Flutter plugin for iOS and Android for picking images from the image library, and taking new pictures with the camera.

Installation

First, add image_picker as a dependency in your pubspec.yaml file.

@theindianappguy
theindianappguy / main.dart
Last active March 12, 2020 13:22
Memory Game - DartPad
import 'package:flutter/material.dart';
void main() {
runApp(MyApp());
}
class MyApp extends StatelessWidget {
// This widget is the root of your application.
@override
Widget build(BuildContext context) {
@theindianappguy
theindianappguy / README-Template.md
Last active March 7, 2020 03:52 — forked from PurpleBooth/README-Template.md
A template to make good README.md