Flutter(Coming soon)
The Flutter development section is currently under preparation.
import 'package:flutter/material.dart';
void main() {
runApp(MyApp());
}
class MyApp extends StatelessWidget {
@override
Widget build(BuildContext context) {
return MaterialApp(
home: Scaffold(
appBar: AppBar(
title: Text('Flutter SDK coming soon for QUASH'),
),
body: Center(
child: Text(
'Flutter coming soon in QUASH',
style: TextStyle(fontSize: 24.0),
),
),
),
);
}
}