-
-
Save mehmetext/ec3cf4224f0b3577464c7e7e8a6592fa to your computer and use it in GitHub Desktop.
Quick way to convert the widget to marker, not supposed to work with images. (null safety)
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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; | |
MarkerGenerator(this.markerWidgets, this.callback); | |
void generate(BuildContext context) { | |
WidgetsBinding.instance | |
.addPostFrameCallback((_) => afterFirstLayout(context)); | |
} | |
void afterFirstLayout(BuildContext context) { | |
addOverlay(context); | |
} | |
void addOverlay(BuildContext context) { | |
OverlayState overlayState = Overlay.of(context); | |
late OverlayEntry entry; | |
entry = OverlayEntry( | |
builder: (context) { | |
return _MarkerHelper( | |
markerWidgets: markerWidgets, | |
callback: (List<Uint8List> bitmapList) { | |
callback.call(bitmapList); | |
// Remove marker widgets from Overlay when finished | |
entry.remove(); | |
}, | |
); | |
}, | |
maintainState: true); | |
overlayState.insert(entry); | |
} | |
} | |
/// Maps are embeding GoogleMap library for Andorid/iOS into flutter. | |
/// | |
/// These native libraries accept BitmapDescriptor for marker, which means that for custom markers | |
/// you need to draw view to bitmap and then send that to BitmapDescriptor. | |
/// | |
/// Because of that Flutter also cannot accept Widget for marker, but you need draw it to bitmap and | |
/// that's what this widget does: | |
/// | |
/// 1) It draws marker widget to tree | |
/// 2) After painted access the repaint boundary with global key and converts it to uInt8List | |
/// 3) Returns set of Uint8List (bitmaps) through callback | |
class _MarkerHelper extends StatefulWidget { | |
final List<Widget> markerWidgets; | |
final Function(List<Uint8List>) callback; | |
const _MarkerHelper({ | |
Key? key, | |
required this.markerWidgets, | |
required this.callback, | |
}) : super(key: key); | |
@override | |
_MarkerHelperState createState() => _MarkerHelperState(); | |
} | |
class _MarkerHelperState extends State<_MarkerHelper> with AfterLayoutMixin { | |
List<GlobalKey> globalKeys = <GlobalKey>[]; | |
@override | |
void afterFirstLayout(BuildContext context) { | |
_getBitmaps(context).then((list) { | |
widget.callback(list); | |
}); | |
} | |
@override | |
Widget build(BuildContext context) { | |
return Transform.translate( | |
offset: Offset(MediaQuery.of(context).size.width, 0), | |
child: Material( | |
type: MaterialType.transparency, | |
child: Stack( | |
children: widget.markerWidgets.map((i) { | |
final markerKey = GlobalKey(); | |
globalKeys.add(markerKey); | |
return RepaintBoundary( | |
key: markerKey, | |
child: i, | |
); | |
}).toList(), | |
), | |
), | |
); | |
} | |
Future<List<Uint8List>> _getBitmaps(BuildContext context) async { | |
var futures = globalKeys.map((key) => _getUint8List(key)); | |
return Future.wait(futures); | |
} | |
Future<Uint8List> _getUint8List(GlobalKey markerKey) async { | |
RenderRepaintBoundary boundary = | |
(markerKey.currentContext!.findRenderObject() as RenderRepaintBoundary); | |
var image = await boundary.toImage(pixelRatio: 2.0); | |
ByteData? byteData = await image.toByteData(format: ui.ImageByteFormat.png); | |
return byteData!.buffer.asUint8List(); | |
} | |
} | |
/// AfterLayoutMixin | |
mixin AfterLayoutMixin<T extends StatefulWidget> on State<T> { | |
@override | |
void initState() { | |
super.initState(); | |
WidgetsBinding.instance | |
.addPostFrameCallback((_) => afterFirstLayout(context)); | |
} | |
void afterFirstLayout(BuildContext context); | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment