Skip to content

Commit

Permalink
add material app widget
Browse files Browse the repository at this point in the history
  • Loading branch information
committed Dec 16, 2022
1 parent abc111a commit 52adb55
Showing 1 changed file with 3 additions and 4 deletions.
7 changes: 3 additions & 4 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,14 +7,14 @@ 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(),
app: MaterialApp(
home: MyApp()
),
);
}
Expand All @@ -30,5 +30,4 @@ class MyApp extends StatelessWidget {
).build();
}
}
```

0 comments on commit 52adb55

Please sign in to comment.