jsc 0.1.5 copy "jsc: ^0.1.5" to clipboard
jsc: ^0.1.5 copied to clipboard

outdated

Prebuilt JavaScriptCore binary maintained kraken team.

example/lib/main.dart

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

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

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

class MyApp extends StatefulWidget {
  @override
  _MyAppState createState() => _MyAppState();
}

class _MyAppState extends State<MyApp> {
  String _platformVersion = 'Unknown';

  @override
  void initState() {
    super.initState();
  }

  @override
  Widget build(BuildContext context) {
    return MaterialApp(
      home: Scaffold(
        appBar: AppBar(
          title: const Text('Plugin example app'),
        ),
        body: Center(
          child: Text('Running on: $_platformVersion\n'),
        ),
      ),
    );
  }
}
1
likes
0
pub points
0%
popularity

Publisher

verified publisheropenkraken.com

Prebuilt JavaScriptCore binary maintained kraken team.

License

unknown (LICENSE)

Dependencies

flutter

More

Packages that depend on jsc