nylo_support 5.67.1 nylo_support: ^5.67.1 copied to clipboard
Support library for the Nylo framework. This library supports routing, widgets, localization, cli, storage and more.
import 'package:flutter/material.dart';
void main() => runApp(MyApp());
class MyApp extends StatelessWidget {
@override
Widget build(BuildContext context) {
return MaterialApp(
title: 'Nylo Support',
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"),
),
);
}
}