zema_text 0.0.1
zema_text: ^0.0.1 copied to clipboard
A Flutter widget package that parses raw Ge'ez text and renders it alongside traditional Yaredawi Zema musical notation (Yefidel Qirts and Melekket markers).
import 'package:flutter/material.dart';
import 'src/playground.dart';
void main() => runApp(const ZemaTextExampleApp());
class ZemaTextExampleApp extends StatelessWidget {
const ZemaTextExampleApp({super.key});
@override
Widget build(BuildContext context) {
return MaterialApp(
title: 'zema_text example',
home: const ZemaTextPlayground(),
);
}
}