ot_kvol

A Flutter package that wraps a C++ library via FFI to allow native calculations on Android, iOS, Windows, macOS, and Linux.

Features

  • FFI integration with cross-platform C++ code
  • Provides a simple Calculator API
  • Works on mobile, desktop, and web platforms

Usage

import 'package:ot_kvol/ot_kvol.dart';

void main() {
  final calculator = Calculator();
  print('5 + 7 = ${calculator.add(5, 7)}');
}

Libraries

ot_kvol