nylo_framework 6.2.2 copy "nylo_framework: ^6.2.2" to clipboard
nylo_framework: ^6.2.2 copied to clipboard

Micro-framework for Flutter that's built to simplify app development for Flutter projects.

example/main.dart

import 'package:flutter/material.dart';

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

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

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

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

  final String title;

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

class _MyHomePageState extends State<MyHomePage> {
  @override
  Widget build(BuildContext context) {
    return Scaffold(
      appBar: AppBar(
        title: Text(widget.title),
      ),
      body: const Center(
        child: Text("Framework"),
      ),
    );
  }
}
91
likes
150
pub points
91%
popularity
screenshot

Publisher

verified publishernylo.dev

Micro-framework for Flutter that's built to simplify app development for Flutter projects.

Homepage
Repository (GitHub)
View/report issues

Topics

#micro-framework #framework

Documentation

Documentation
API reference

Funding

Consider supporting this project:

github.com

License

MIT (license)

Dependencies

args, collection, dart_console, date_field, dio, error_stack, flutter, flutter_dotenv, flutter_secure_storage, nylo_support, recase, skeletonizer, theme_provider

More

Packages that depend on nylo_framework