flutter_yfree 2.0.1 copy "flutter_yfree: ^2.0.1" to clipboard
flutter_yfree: ^2.0.1 copied to clipboard

YFree_Flutter

flutter_yfree #

YFree_Flutter

Getting Started #

This project is a starting point for a Flutter plug-in package, a specialized package that includes platform-specific implementation code for Android and/or iOS.

For help getting started with Flutter, view our online documentation, which offers tutorials, samples, guidance on mobile development, and a full API reference.

compileSdkVersion 33 minSdkVersion 19

import 'package:flutter/material.dart'; import 'package:flutter_yfree/YFree.dart';

void main() { yRunApp(FirstPage(), Colors.blue, onYConfig: () { YConfig.appName = "YFreeApp"; }); }

class FirstPage extends YPage { @override void yOnCreate() { yToast("Hello YFree"); }

@override
Widget yBuild(BuildContext context) {
    return Center(
        child: Text("This is the first page."),
    );
}

}