Navigation Menu

Skip to content

Instantly share code, notes, and snippets.

View Plumillon's full-sized avatar

Flavien Norindr Plumillon

  • Plumillon Forge
  • France
View GitHub Profile
@Plumillon
Plumillon / main.dart
Created March 5, 2024 17:22
TabPanel part 1
/// TabPanel part 1
/// This is the first part of the TabPanel series:
/// https://medium.com/@FlavienNorindr/building-a-custom-vertical-tabbed-panel-widget-tabpanel-part-1-7fa7a44f6467
import 'package:flutter/material.dart';
void main() {
runApp(const MyApp());
}
@Plumillon
Plumillon / PFStatusRecyclerView.java
Created August 13, 2017 20:34
RecyclerView with status which will show and hide corresponding views
import android.content.Context;
import android.support.annotation.NonNull;
import android.support.annotation.Nullable;
import android.support.v7.widget.RecyclerView;
import android.util.AttributeSet;
import android.view.View;
import java.util.HashMap;
import java.util.Map;
@Plumillon
Plumillon / PFRecyclerViewAdapter.java
Last active April 1, 2022 07:29
Simpler generic RecyclerView.Adapter and RecyclerView.ViewHolder with click listener
import android.content.Context;
import android.support.v7.widget.RecyclerView;
import android.view.View;
import android.view.ViewGroup;
import java.util.ArrayList;
import java.util.HashMap;
import java.util.List;
import java.util.Map;