Skip to content

Commit

Permalink
update
Browse files Browse the repository at this point in the history
  • Loading branch information
committed Dec 16, 2022
1 parent b270b51 commit 9d24a5d
Show file tree
Hide file tree
Showing 2 changed files with 19 additions and 2 deletions.
12 changes: 11 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,15 +7,25 @@ Webify adalah framework web menggunakan bahasa dart dengan feature class dan syn

```dart
// ignore_for_file: non_constant_identifier_names
import 'package:webify/webify.dart';
void main(List<String> arguments) {
runApp(
port: 8080,
bindIp: "0.0.0.0",
app: MyApp(),
);
}
String MyApp() {
return Container(height: 512, width: 512, child: Center(child: Text("Azka dev Webify framework")));
return Container(
height: 512,
width: 512,
child: Center(
child: Text("Azka dev Webify framework"),
),
);
}
```
9 changes: 8 additions & 1 deletion example/bin/example.dart
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,13 @@ void main(List<String> arguments) {
app: MyApp(),
);
}

String MyApp() {
return Container(height: 512, width: 512, child: Center(child: Text("Azka dev Webify framework")));
return Container(
height: 512,
width: 512,
child: Center(
child: Text("Azka dev Webify framework"),
),
);
}

0 comments on commit 9d24a5d

Please sign in to comment.