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

outdated

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(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, 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("Framework"),
      ),
    );
  }
}
77
likes
0
pub points
91%
popularity

Publisher

verified publishernylo.dev

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

Homepage
Repository (GitHub)
View/report issues

Documentation

Documentation

License

unknown (LICENSE)

Dependencies

args, dynamic_theme, flutter, flutter_dotenv, flutter_launcher_icons, flutter_secure_storage, http, json_to_dart, logger, queue, sailor

More

Packages that depend on nylo_framework