import 'package:flutter/material.dart';
import 'package:sqljocky5/sqljocky.dart';
void main(){
runApp(new MaterialApp(
home: new MyApp(),
));
}
class MyApp extends StatefulWidget{
@override
_State createState() => new _State();
}
class _State extends State<MyApp>{
@override
Widget build(BuildContext content){
return new Scaffold(
appBar: new AppBar(
title: new Text("PZW Alarm"),
),
body: new Container(
padding: new EdgeInsets.all(32.0),
child: new Center(
child: new Column(
children: <Widget>[
new Text("Typ alarmu: "),
new Row(), // <- Here is Error
],
),
)
),
);
}
}