Skip to content

Instantly share code, notes, and snippets.

View ephrimlawrence's full-sized avatar

Lawrence Ephrim ephrimlawrence

View GitHub Profile
@agungsb
agungsb / fancy_fab.dart
Last active October 27, 2020 10:38
Create A Simple Animated FloatingActionButton in Flutter
import 'package:flutter/material.dart';
class FancyFab extends StatefulWidget {
final Function() onPressed;
final String tooltip;
final IconData icon;
FancyFab({this.onPressed, this.tooltip, this.icon});
@override
@rogerhu
rogerhu / Contact.java
Last active June 9, 2022 23:32
Endless scrolling with RecyclerVIew
package codepath.com.recyclerviewfun;
import java.util.ArrayList;
import java.util.List;
public class Contact {
private String mName;
private boolean mOnline;
public Contact(String name, boolean online) {