Skip to content

Instantly share code, notes, and snippets.

View Kvaibhav01's full-sized avatar
:octocat:
In 💗 with React and Next

Vaibhav Khulbe Kvaibhav01

:octocat:
In 💗 with React and Next
View GitHub Profile
@Kvaibhav01
Kvaibhav01 / style.css
Created June 15, 2018 15:07
CSS file for Material ripple effect without JS
.container {
background-color: #c1c1c1;
height: 500px;
display: flex;
justify-content: center;
align-items: center;
}
.btn {
background-color: orange;
@Kvaibhav01
Kvaibhav01 / index.html
Created June 15, 2018 14:54
HTML file for Material ripple effect without JS
<!DOCTYPE html>
<html lang="en" dir="ltr">
<head>
<link rel="stylesheet" href="style.css">
<meta charset="utf-8">
<title>Material Ripple Effect</title>
</head>
<body>
@Kvaibhav01
Kvaibhav01 / homePage.dart
Created March 17, 2018 19:41
Beautifying text in Flutter
import 'package:flutter/material.dart';
class HomePage extends StatelessWidget
{
@override
Widget build(BuildContext context)
{
return new Material(
color: Colors.blue,
child: new InkWell(
@Kvaibhav01
Kvaibhav01 / homePage.dart
Last active March 17, 2018 19:15
Making a text widget in Flutter
import 'package:flutter/material.dart';
class HomePage extends StatelessWidget
{
@override
Widget build(BuildContext context)
{
return new Material(
color: Colors.blue,
child: new InkWell(
@Kvaibhav01
Kvaibhav01 / homePage.dart
Created March 17, 2018 18:33
Designing home page of Material App
import 'package:flutter/material.dart';
class HomePage extends StatelessWidget
{
@override
Widget build(BuildContext context)
{
return new Material(
color: Colors.blue,
);
@Kvaibhav01
Kvaibhav01 / main.dart
Created March 17, 2018 18:18
Making an instance of Materlal App
void main()
{
runApp(new MaterialApp(
home: home,
));
}