bruno 2.0.0 bruno: ^2.0.0 copied to clipboard
An enterprise-class package of Flutter components for mobile applications.
import 'package:example/sample/home/home.dart';
import 'package:flutter/material.dart';
void main() {
runApp(MyApp());
}
class MyApp extends StatelessWidget {
@override
Widget build(BuildContext context) {
return MaterialApp(
title: 'Flutter Example',
theme: ThemeData(
primarySwatch: Colors.orange,
),
home: HomePage(),
);
}
}