flutter_xcore 0.0.1 copy "flutter_xcore: ^0.0.1" to clipboard
flutter_xcore: ^0.0.1 copied to clipboard

Flutter XCore is foundational components, functionalities, and logic that drive the application's operation based on GetX

example/lib/main.dart

import 'package:flutter/material.dart';
import 'package:flutter_xcore/app_core.dart';

void main() async {
  await XCore.init();
  runApp(const MyApp());
}

class MyApp extends StatefulWidget {
  const MyApp({Key? key}) : super(key: key);

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

class _MyAppState extends State<MyApp> {
  final 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
140
points
13
downloads

Publisher

unverified uploader

Weekly Downloads

Flutter XCore is foundational components, functionalities, and logic that drive the application's operation based on GetX

Homepage
Repository (GitHub)
View/report issues

Documentation

API reference

License

MIT (license)

Dependencies

dio, flutter, flutter_image_compress, geolocator, get, hive_flutter, image_picker, intl, path_provider, plugin_platform_interface

More

Packages that depend on flutter_xcore

Packages that implement flutter_xcore