Skip to content

Instantly share code, notes, and snippets.

View shashkiranr's full-sized avatar

Shashi Kiran R shashkiranr

View GitHub Profile
@slightfoot
slightfoot / animated_bottom_bar.dart
Last active November 26, 2019 10:06
Animated Bottom Bar (fixed bug where Material shadow was clipped from BottomNavigationBar.)
// Copyright 2018 Simon Lightfoot. All rights reserved.
// Use of this source code is governed by a MIT license that can be
// found in the LICENSE file.
import 'package:flutter/rendering.dart';
import 'package:flutter/material.dart';
import 'package:meta/meta.dart';
/// Animated Bottom Bar.
@aloisdeniel
aloisdeniel / flutter_spanablegrid.dart
Last active August 10, 2023 11:27
Custom GridView with various cell sizes in Flutter
import 'dart:math' as math;
import 'package:flutter/material.dart';
import 'package:flutter/src/rendering/sliver.dart';
import 'package:flutter/src/rendering/sliver_grid.dart';
class _CoordinateOffset {
final double main, cross;
_CoordinateOffset(this.main, this.cross);
}
@staltz
staltz / introrx.md
Last active May 3, 2024 13:00
The introduction to Reactive Programming you've been missing