Skip to content

Instantly share code, notes, and snippets.

View NassB's full-sized avatar
🎯
Focusing

Nassim B. NassB

🎯
Focusing
View GitHub Profile
@NassB
NassB / shimmer.dart
Last active September 16, 2025 12:54 — forked from hawkkiller/shimmer.dart
Shimmer implemented with linear gradient and a shimmer implemented with custom shader.
import 'package:flutter/foundation.dart';
import 'package:flutter/material.dart';
class Shimmer extends StatefulWidget {
const Shimmer({
super.key,
this.size,
this.child,
this.gradientColors,
this.duration,