apex_dart 0.0.1 copy "apex_dart: ^0.0.1" to clipboard
apex_dart: ^0.0.1 copied to clipboard

Apex Dart - Cross-Platform Chart Library for Flutter

example/lib/main.dart

import 'package:flutter/material.dart';
import 'dart:async';

import 'package:flutter/services.dart';
import 'package:apex_dart/apex_dart.dart';

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

class MyApp extends StatefulWidget {
  const MyApp({super.key});

  @override
  State<MyApp> createState() => _MyAppState();
}

class _MyAppState extends State<MyApp> {


  @override
  Widget build(BuildContext context) {
    return MaterialApp(
      home: Scaffold(
        appBar: AppBar(
          title: const Text('Plugin example app'),
        ),
        body: const Column(
          mainAxisAlignment: MainAxisAlignment.center,
          children: [

            Expanded(
              child: ApexDart(),
            ),

          ],
        ),
        floatingActionButton: FloatingActionButton(
          child: const Icon(Icons.add),
          onPressed: () async {
            print("object");
            // webViewController.callJsMethod("updateOptions", []);
          },
        )
      ),
    );
  }
}
1
likes
100
pub points
0%
popularity

Publisher

unverified uploader

Apex Dart - Cross-Platform Chart Library for Flutter

Repository (GitHub)
View/report issues

Documentation

API reference

License

MIT (license)

Dependencies

crossview, flutter, flutter_web_plugins, plugin_platform_interface

More

Packages that depend on apex_dart