jay 0.0.1+2 copy "jay: ^0.0.1+2" to clipboard
jay: ^0.0.1+2 copied to clipboard

A simple Flutter server driven UI generator.

example/lib/main.dart

import 'package:example/sample_component.dart';
import 'package:flutter/material.dart';
import 'package:jay/jay.dart';

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

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

  // This widget is the root of your application.
  @override
  Widget build(BuildContext context) {
    return JayApp(
      components: const [
        SampleComponent(),
      ],
    );
  }
}
4
likes
110
pub points
0%
popularity

Publisher

unverified uploader

A simple Flutter server driven UI generator.

Repository (GitHub)
View/report issues

Documentation

API reference

License

Apache-2.0 (LICENSE)

Dependencies

flutter

More

Packages that depend on jay