yuno_sdk_foundation 0.4.0 copy "yuno_sdk_foundation: ^0.4.0" to clipboard
yuno_sdk_foundation: ^0.4.0 copied to clipboard

PlatformiOS

A Yuno Project for IOS

example/lib/main.dart

import 'package:flutter/material.dart';

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

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

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

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

  @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'),
        ),
      ),
    );
  }
}
0
likes
140
points
502
downloads

Publisher

verified publisherdev.y.uno

Weekly Downloads

A Yuno Project for IOS

Homepage

Documentation

API reference

License

MIT (license)

Dependencies

flutter, plugin_platform_interface

More

Packages that depend on yuno_sdk_foundation