udpipe_flutter 0.2.1 copy "udpipe_flutter: ^0.2.1" to clipboard
udpipe_flutter: ^0.2.1 copied to clipboard

Flutter library and demo app for UDPipe 1 — NLP tokenization, POS tagging and dependency parsing across 50+ languages, with native FFI on desktop/mobile and WebAssembly on the web.

example/lib/main.dart

import 'package:flutter/material.dart';
import 'screens/home_screen.dart';

void main() {
  runApp(const UDPipeApp());
}

class UDPipeApp extends StatelessWidget {
  const UDPipeApp({super.key});

  @override
  Widget build(BuildContext context) {
    return MaterialApp(
      title: 'UDPipe Flutter',
      debugShowCheckedModeBanner: false,
      theme: ThemeData(
        colorScheme: ColorScheme.fromSeed(seedColor: const Color(0xFF1565C0)),
        useMaterial3: true,
      ),
      darkTheme: ThemeData(
        colorScheme: ColorScheme.fromSeed(
          seedColor: const Color(0xFF1565C0),
          brightness: Brightness.dark,
        ),
        useMaterial3: true,
      ),
      home: const HomeScreen(),
    );
  }
}
2
likes
160
points
231
downloads

Documentation

API reference

Publisher

unverified uploader

Weekly Downloads

Flutter library and demo app for UDPipe 1 — NLP tokenization, POS tagging and dependency parsing across 50+ languages, with native FFI on desktop/mobile and WebAssembly on the web.

Repository (GitHub)
View/report issues

Topics

#nlp #ffi #text-processing #linguistics

License

MIT (license)

Dependencies

ffi, flutter

More

Packages that depend on udpipe_flutter