jetx 0.1.0-alpha.5 copy "jetx: ^0.1.0-alpha.5" to clipboard
jetx: ^0.1.0-alpha.5 copied to clipboard

A library for building Flutter applications with JetX it's a fork of GetX.

example/lib/main.dart

import 'package:example/router.dart';
import 'package:flutter/material.dart';
import 'package:jetx/jet.dart';

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

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

  @override
  Widget build(BuildContext context) {
    return JetMaterialApp(
      title: 'JetX Example',
      theme: ThemeData(
        colorScheme: ColorScheme.fromSeed(seedColor: Colors.blue),
        useMaterial3: true,
      ),
      initialRoute: HomePageRoute.path,
      jetPages: AppRouter.pages,
    );
  }
}
6
likes
130
points
333
downloads

Publisher

verified publishershrimps.ly

Weekly Downloads

A library for building Flutter applications with JetX it's a fork of GetX.

Repository (GitHub)
View/report issues

Documentation

API reference

License

MIT (license)

Dependencies

flutter, flutter_web_plugins, web

More

Packages that depend on jetx