Skip to content

Instantly share code, notes, and snippets.

View funyin's full-sized avatar
👨‍💻
Composing and Fluttering

Funyinoluwa Kashimawo funyin

👨‍💻
Composing and Fluttering
View GitHub Profile
@mykeels
mykeels / states-and-cities.json
Created April 8, 2018 12:43
Nigerian States and Cities in JSON
[
{
"name": "Abia",
"cities": [
"Aba South",
"Arochukwu",
"Bende",
"Ikwuano",
"Isiala Ngwa North",
"Isiala Ngwa South",
@funyin
funyin / app_expansion_panel.dart
Created June 13, 2022 22:03
A fix for flutters expansion panel list. Removed header icon and gap between selected panels
import 'package:flutter/material.dart';
const double _kPanelHeaderCollapsedHeight = kMinInteractiveDimension;
const EdgeInsets _kPanelHeaderExpandedDefaultPadding = EdgeInsets.symmetric(
vertical: 64.0 - _kPanelHeaderCollapsedHeight,
);
class _SaltedKey<S, V> extends LocalKey {
const _SaltedKey(this.salt, this.value);
@funyin
funyin / Main.kt
Created October 17, 2022 19:19
Spriral Matrix
/**
* Spiral Matrix
* Print all the elements in a matrix by following a spiral clockwise path in a matrix
*
* Input:
* [
* [1 , 2, 3, 4, 5],
* [6 , 7, 8, 9, 10],
* [11 , 12, 13, 14, 15]
* ]