Skip to content
/ webify Public

Webify Framework Untuk Membangun app web dengan style code flutter

License

Notifications You must be signed in to change notification settings

azkadev/webify

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

3 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Webify

Webify adalah framework web menggunakan bahasa dart dengan feature class dan syntax mirip flutter

Quickstart

// 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"),
    ),
  );
}