Skip to content

Instantly share code, notes, and snippets.

View manaspratap's full-sized avatar
😄
#eager_to_contribute

Manas Pratap Thakur manaspratap

😄
#eager_to_contribute
View GitHub Profile
import 'package:flutter/material.dart';
class FadeIndexedStack extends StatefulWidget {
final int index;
final List<Widget> children;
final Duration duration;
const FadeIndexedStack({
Key key,
this.index,
@itsJoKr
itsJoKr / marker_generator.dart
Last active January 30, 2025 20:19
Quick way to convert the widget to marker, not supposed to work with images.
import 'package:flutter/material.dart';
import 'dart:typed_data';
import 'package:flutter/rendering.dart';
import 'dart:ui' as ui;
/// This just adds overlay and builds [_MarkerHelper] on that overlay.
/// [_MarkerHelper] does all the heavy work of creating and getting bitmaps
class MarkerGenerator {
final Function(List<Uint8List>) callback;
final List<Widget> markerWidgets;