nylo_support 5.5.1 copy "nylo_support: ^5.5.1" to clipboard
nylo_support: ^5.5.1 copied to clipboard

Support library for the Nylo framework. This library supports routing, widgets, localization, cli, storage and more.

example/main.dart

import 'package:flutter/material.dart';

void main() => runApp(MyApp());

class MyApp extends StatelessWidget {
  @override
  Widget build(BuildContext context) {
    return MaterialApp(
      title: 'Nylo Framework',
      theme: ThemeData(
        primarySwatch: Colors.blue,
      ),
      home: MyHomePage(title: 'Nylo'),
    );
  }
}

class MyHomePage extends StatefulWidget {
  MyHomePage({Key? key, required this.title}) : super(key: key);

  final String title;

  @override
  _MyHomePageState createState() => _MyHomePageState();
}

class _MyHomePageState extends State<MyHomePage> {
  @override
  Widget build(BuildContext context) {
    return Scaffold(
      appBar: AppBar(
        title: Text(widget.title),
      ),
      body: Center(
        child: Text("Nylo Support"),
      ),
    );
  }
}
16
likes
0
pub points
72%
popularity

Publisher

verified publishernylo.dev

Support library for the Nylo framework. This library supports routing, widgets, localization, cli, storage and more.

Homepage
Repository (GitHub)
View/report issues

Topics

#micro-framework #framework

Documentation

Documentation

Funding

Consider supporting this project:

github.com

License

unknown (LICENSE)

Dependencies

animate_do, event_bus_plus, flutter, flutter_dotenv, flutter_localizations, flutter_secure_storage, flutter_styled_toast, page_transition, pull_to_refresh_flutter3, recase, theme_provider, validated

More

Packages that depend on nylo_support