nylo_support 4.4.0 copy "nylo_support: ^4.4.0" to clipboard
nylo_support: ^4.4.0 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
120
points
6.93k
downloads
screenshot

Publisher

verified publishernylo.dev

Weekly Downloads

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

Homepage
Repository (GitHub)
View/report issues

Documentation

Documentation
API reference

License

MIT (license)

Dependencies

animate_do, flutter, flutter_dotenv, flutter_localizations, flutter_secure_storage, flutter_styled_toast, logger, page_transition, recase, theme_provider, validated

More

Packages that depend on nylo_support