fox_sdk 0.1.0-alpha.2 copy "fox_sdk: ^0.1.0-alpha.2" to clipboard
fox_sdk: ^0.1.0-alpha.2 copied to clipboard

A Flutter SDK and CLI for running apps, resolving platforms, and managing updates.

example/lib/main.dart

import 'package:flutter/material.dart';

import 'package:fox_sdk/fox_sdk.dart';

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

class FoxSdkExampleApp extends StatelessWidget {
  const FoxSdkExampleApp({super.key});

  @override
  Widget build(BuildContext context) {
    return MaterialApp(
      debugShowCheckedModeBanner: false,
      home: Scaffold(
        appBar: AppBar(title: const Text('fox_sdk example')),
        body: Center(
          child: Text(
            'Current platform: ${PlatformResolver.current.name}',
            style: Theme.of(context).textTheme.headlineMedium,
            textAlign: TextAlign.center,
          ),
        ),
      ),
    );
  }
}
0
likes
160
points
70
downloads

Documentation

API reference

Publisher

verified publishervedla.ca

Weekly Downloads

A Flutter SDK and CLI for running apps, resolving platforms, and managing updates.

Repository (GitLab)
View/report issues

License

MIT (license)

Dependencies

args, cli_completion, flutter, mason_logger, pub_updater

More

Packages that depend on fox_sdk