Skip to content

Commit

Permalink
change style code
Browse files Browse the repository at this point in the history
  • Loading branch information
committed Dec 16, 2022
1 parent 9d24a5d commit f6d95de
Showing 1 changed file with 11 additions and 8 deletions.
19 changes: 11 additions & 8 deletions example/bin/example.dart
Original file line number Diff line number Diff line change
Expand Up @@ -10,12 +10,15 @@ void main(List<String> arguments) {
);
}

String MyApp() {
return Container(
height: 512,
width: 512,
child: Center(
child: Text("Azka dev Webify framework"),
),
);
class MyApp extends StatelessWidget {
@override
build() {
return Container(
height: 512,
width: 512,
child: Center(
child: Text("Azka dev Webify framework"),
),
).build();
}
}

0 comments on commit f6d95de

Please sign in to comment.