Skip to content

Instantly share code, notes, and snippets.

View vimask's full-sized avatar

Vinh Vo vimask

  • Hochiminh, Vietnam
  • 09:39 (UTC +07:00)
View GitHub Profile
@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;