txt2rfw 0.0.8+1
txt2rfw: ^0.0.8+1 copied to clipboard
A tool to parse RemoteFlutterWidget .rfwtxt format to .rfw format.
example/example.dart
import 'dart:io';
import 'dart:typed_data';
import 'package:txt2rfw/txt2rfw.dart';
void main() {
File file = File('match.rfwtxt');
Uint8List bytes = txt2rfw(file.readAsStringSync());
print(bytes);
}