Skip to content

Instantly share code, notes, and snippets.

View codersanket's full-sized avatar
🎯
Focusing

Sanket Babar codersanket

🎯
Focusing
View GitHub Profile

Flutter BFF Orchestration Layer - Architecture & Implementation Guide

Version: 2.0.0 Target Audience: Senior Flutter Engineers Last Updated: January 2026


Architecture Principles

[
{
"id": "Ae334bdf9bb348ec8ddcc6d0d0d7fb",
"ifsc": "",
"upiEnabled": "true",
"supported": {
"clDynamicKeys": false,
"base": false,
"mandate": false,
{
"bankList": [
{
"id": "Ae334bdf9bb348ec8ddcc6d0d0d7fb",
"ifsc": "",
"upiEnabled": "true",
"supported": {
"clDynamicKeys": false,
"base": false,
"mandate": false,
@codersanket
codersanket / main.dart
Created June 6, 2022 11:28
Custom Slider
import 'package:flutter/material.dart';
import 'package:flutter/gestures.dart';
import 'package:flutter/rendering.dart';
import 'package:flutter/scheduler.dart';
void main() {
runApp(const MaterialApp(debugShowCheckedModeBanner: false, home: PhotosLogoAnimation()));
}
@codersanket
codersanket / Week 3 programming assignment_b.r
Created June 5, 2020 13:36 — forked from DouglasRubin/Week 3 programming assignment_b.r
Peer-graded Assignment: Programming Assignment 2: Lexical Scoping -- for Douglas Rubin, BMS
setwd('C:/Users/rubind1/Documents/Coursera-R')
##
## I simply set the input x as a matrix
## and then set the solved value "s" as a null
## then I changed every reference to "mean" to "solve"
makeCacheMatrix <- function(x = matrix(sample(1:100,9),3,3)) {
s <- NULL
set <- function(y) {
x <<- y
s <<- NULL