add viewer/windows files

This commit is contained in:
Nick Fisher
2022-01-30 14:52:19 +08:00
parent d31b1eb09b
commit 97eca4a418
127 changed files with 4028 additions and 12 deletions

17
lib/polyvox_filament.dart Normal file
View File

@@ -0,0 +1,17 @@
// You have generated a new plugin project without
// specifying the `--platforms` flag. A plugin project supports no platforms is generated.
// To add platforms, run `flutter create -t plugin --platforms <platforms> .` under the same
// directory. You can also find a detailed instruction on how to add platforms in the `pubspec.yaml` at https://flutter.dev/docs/development/packages-and-plugins/developing-packages#plugin-platforms.
import 'dart:async';
import 'package:flutter/services.dart';
class PolyvoxFilament {
static const MethodChannel _channel = MethodChannel('polyvox_filament');
static Future<String?> get platformVersion async {
final String? version = await _channel.invokeMethod('getPlatformVersion');
return version;
}
}