flutter_native_charts 0.0.2 copy "flutter_native_charts: ^0.0.2" to clipboard
flutter_native_charts: ^0.0.2 copied to clipboard

Lightweight GPU-backed chart for Android/iOS: small Dart surface, ffi + native view only — no Canvas, minimal dependencies.

example/lib/main.dart

import 'package:flutter/material.dart';

import 'home_page.dart';

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

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

  @override
  Widget build(BuildContext context) {
    return MaterialApp(
      title: 'flutter_native_charts',
      debugShowCheckedModeBanner: false,
      theme: ThemeData(
        useMaterial3: true,
        brightness: Brightness.dark,
        colorScheme: ColorScheme.fromSeed(
          seedColor: const Color(0xFF7CFFB2),
          brightness: Brightness.dark,
          surface: const Color(0xFF0B0E14),
        ),
      ),
      home: const HomePage(),
    );
  }
}
0
likes
150
points
31
downloads

Documentation

API reference

Publisher

verified publisherdevarshpanchal.app

Weekly Downloads

Lightweight GPU-backed chart for Android/iOS: small Dart surface, ffi + native view only — no Canvas, minimal dependencies.

Repository (GitHub)
View/report issues

License

MIT (license)

Dependencies

ffi, flutter

More

Packages that depend on flutter_native_charts

Packages that implement flutter_native_charts