{"id":15627627,"url":"https://github.com/azkadev/simulate","last_synced_at":"2025-05-16T00:03:41.483Z","repository":{"id":57676934,"uuid":"487538443","full_name":"azkadev/simulate","owner":"azkadev","description":"Simulate your project flutter on cross platform with frame device ( android , ios, desktop ) on your os without heavy vm","archived":false,"fork":false,"pushed_at":"2025-03-10T20:00:29.000Z","size":26192,"stargazers_count":402,"open_issues_count":0,"forks_count":4,"subscribers_count":3,"default_branch":"main","last_synced_at":"2025-04-01T09:27:31.493Z","etag":null,"topics":["android","application","cross-platform","dart","emulator","flutter","flutter-app","flutter-apps","ios","iphone","linux","macos","mock-device","simulate","simulator","windows"],"latest_commit_sha":null,"homepage":"","language":"Dart","has_issues":false,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"other","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/azkadev.png","metadata":{"files":{"readme":"README.md","changelog":"CHANGELOG.md","contributing":null,"funding":".github/funding.yaml","license":"LICENSE","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null},"funding":{"github":["azkadev","generalfoss"]}},"created_at":"2022-05-01T12:58:38.000Z","updated_at":"2025-03-23T08:45:16.000Z","dependencies_parsed_at":"2023-02-16T22:01:17.341Z","dependency_job_id":"9b49d322-9047-4e17-b353-ca16111b7742","html_url":"https://github.com/azkadev/simulate","commit_stats":{"total_commits":32,"total_committers":2,"mean_commits":16.0,"dds":0.09375,"last_synced_commit":"af5d56b27c84e426594ea94497769ba519536281"},"previous_names":[],"tags_count":6,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/azkadev%2Fsimulate","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/azkadev%2Fsimulate/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/azkadev%2Fsimulate/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/azkadev%2Fsimulate/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/azkadev","download_url":"https://codeload.github.com/azkadev/simulate/tar.gz/refs/heads/main","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":247823942,"owners_count":21002171,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2022-07-04T15:15:14.044Z","host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":["android","application","cross-platform","dart","emulator","flutter","flutter-app","flutter-apps","ios","iphone","linux","macos","mock-device","simulate","simulator","windows"],"created_at":"2024-10-03T10:18:02.460Z","updated_at":"2025-04-08T10:31:56.978Z","avatar_url":"https://github.com/azkadev.png","language":"Dart","readme":"# simulate \n\nSimulate your project flutter on cross platform with frame device ( android , ios, desktop ) on your os without heavy vm\n\n## Demo \n\n![Screenshot from 2022-06-13 06-29-30](https://user-images.githubusercontent.com/82513502/173258012-cc84255e-4b09-4db6-b988-30a10c3be1fd.png)\n\n\n\nhttps://user-images.githubusercontent.com/82513502/173173590-9b3a4d3e-484b-4508-baf8-9bd8cb49b35f.mp4\n\n```bash\nflutter pub add simulate\n```\n```dart\n\nimport 'package:flutter/material.dart';\nimport 'package:general_lib_flutter/general_lib_flutter.dart';\nimport 'package:simulate/simulate.dart';\n\nvoid main() async {\n  await Simulate.ensureInitialized();\n  runApp(\n    const App(),\n  );\n}\n\nGeneralLibFlutterApp generalLibFlutterApp = GeneralLibFlutterApp();\n\nclass App extends StatelessWidget {\n  const App({\n    super.key,\n  });\n  @override\n  Widget build(BuildContext context) {\n    // auto change theme dark mode and white mode / light mode\n    return GeneralLibFlutterAppMain(\n      generalLibFlutterApp: generalLibFlutterApp,\n      builder: (themeMode, lightTheme, darkTheme, widget) {\n        return MaterialApp(\n          debugShowCheckedModeBanner: false,\n          theme: lightTheme,\n          darkTheme: darkTheme,\n          themeMode: themeMode,\n          home: Simulate(\n            generalLibFlutterApp: generalLibFlutterApp,\n            isShowFrame: true, // set false for disabled\n            isShowTopFrame: true,\n            isShowExperimental: true, // show testing experimental\n            home: MaterialApp(\n              theme: lightTheme,\n              darkTheme: darkTheme,\n              themeMode: themeMode,\n              debugShowCheckedModeBanner: false,\n              debugShowMaterialGrid: false,\n              showPerformanceOverlay: false,\n              home: const Home(),\n            ),\n          ),\n        );\n      },\n    );\n  }\n}\n\nclass Home extends StatefulWidget {\n  const Home({\n    super.key,\n  });\n\n  @override\n  State\u003cHome\u003e createState() =\u003e _HomeState();\n}\n\nclass _HomeState extends State\u003cHome\u003e {\n  @override\n  Widget build(BuildContext context) {\n    return Scaffold(\n      appBar: PreferredSize(\n        preferredSize: const Size.fromHeight(512),\n        child: Container(\n          decoration: const BoxDecoration(\n            color: Colors.blue,\n          ),\n          child: const Column(\n            mainAxisSize: MainAxisSize.min,\n            children: [\n              Row(\n                children: [],\n              )\n            ],\n          ),\n        ),\n      ),\n      body: const Center(\n        child: Text(\"Alow\"),\n      ),\n      floatingActionButton: FloatingActionButton(\n        onPressed: () {\n          Navigator.push(\n            context,\n            MaterialPageRoute(builder: (context) {\n              return const LoginScreen();\n            }),\n          );\n        },\n        child: const Icon(\n          Icons.login,\n        ),\n      ),\n    );\n  }\n}\n\nclass LoginScreen extends StatefulWidget {\n  const LoginScreen({super.key});\n\n  @override\n  State\u003cLoginScreen\u003e createState() =\u003e _LoginScreenState();\n}\n\nclass _LoginScreenState extends State\u003cLoginScreen\u003e {\n  @override\n  Widget build(BuildContext context) {\n    return Scaffold(\n      appBar: AppBar(\n        leading: FloatingActionButton(\n          onPressed: () {\n            Navigator.pop(context);\n          },\n          child: const Icon(\n            Icons.arrow_back,\n          ),\n        ),\n      ),\n      body: const Center(\n        child: Text(\"Alow\"),\n      ),\n    );\n  }\n}\n\n```\n\n \n\u003c!-- START GLOBAL CORPORATION --\u003e\n\u003ch3 align=\"center\"\u003e\n  Global Corporation\n\n  ![](https://raw.githubusercontent.com/globalcorporation/.github/main/.github/logo/global_corporation.png)\n\u003c/h3\u003e\n\n\n\u003ch3 align=\"center\"\u003e\n  Welcome to Global Corporation profile!\n  \u003cimg src=\"https://media.giphy.com/media/hvRJCLFzcasrR4ia7z/giphy.gif\" width=\"28\"\u003e\n\u003c/h3\u003e\n\n\u003c!-- Social icons section --\u003e\n\u003cp align=\"center\"\u003e\n  \u003ca href=\"https://www.instagram.com/global__corporation/\"\u003e\u003cimg width=\"32px\" alt=\"Instagram\" title=\"Telegram\" src=\"https://upload.wikimedia.org/wikipedia/commons/a/a5/Instagram_icon.png\"/\u003e\u003c/a\u003e\n  \u0026#8287;\u0026#8287;\u0026#8287;\u0026#8287;\u0026#8287;\n  \u003ca href=\"https://t.me/GLOBAL_CORPORATION_ORG\"\u003e\u003cimg width=\"32px\" alt=\"Twitter\" title=\"Telegram\" src=\"https://upload.wikimedia.org/wikipedia/commons/8/82/Telegram_logo.svg\"/\u003e\u003c/a\u003e\n  \u0026#8287;\u0026#8287;\u0026#8287;\u0026#8287;\u0026#8287;\n  \u003ca href=\"https://twitter.com/global_corp_org\"\u003e\u003cimg width=\"32px\" alt=\"Twitter\" title=\"Twitter\" src=\"https://upload.wikimedia.org/wikipedia/commons/6/6f/Logo_of_Twitter.svg\"/\u003e\u003c/a\u003e\n  \u0026#8287;\u0026#8287;\u0026#8287;\u0026#8287;\u0026#8287;\n  \u003ca href=\"https://www.youtube.com/@global_Corporation\"\u003e\u003cimg width=\"32px\" alt=\"Youtube\" title=\"Youtube\" src=\"https://upload.wikimedia.org/wikipedia/commons/e/ef/Youtube_logo.png\"/\u003e\u003c/a\u003e\n  \u0026#8287;\u0026#8287;\u0026#8287;\u0026#8287;\u0026#8287;\n\u003c/p\u003e\n\n**Global Corporation** Is a **leading company** that takes a leading role in **accelerating** and **maintaining** enterprise security. \n\nWith a sharp focus on innovation and technological excellence\n\n**Global Corporation** providing effective proactive solutions to secure company operations and prevent potential adverse risks. \n\nWith a committed team of experts, advanced technology, and a holistic approach to corporate security, Global Corporation has become a benchmark for other companies that prioritize security and safety as a top priority in their business.\n\n[![](https://raw.githubusercontent.com/globalcorporation/.github/main/.github/logo/powered.png)](https://www.youtube.com/@Global_Corporation)\n\n## Application / Product / Project Official\n\n\u003ch3 align=\"center\"\u003e\n  Global App\n\n  ![](https://raw.githubusercontent.com/globalcorporation/.github/main/.github/logo/global_corporation.png)\n\u003c/h3\u003e\n\n  Super Cross-platform application allows you to do social media / chat as well as a place for buying and selling businesses to find work\n[![](https://cdn.dribbble.com/userupload/13133188/file/original-2331747061f15217a2f16cc3d665c5b6.jpg)](https://github.com/globalcorporation/global_app)\n\n\u003ch3 align=\"center\"\u003e\n  Global Bot App\n\n  ![](https://raw.githubusercontent.com/globalcorporation/.github/main/.github/logo/global_corporation.png)\n\u003c/h3\u003e\n\n  Super cross-platform application allows you to handle lots of bots / userbots / AI for your assistants, making it easier for you in all your affairs\n  \n[![](https://cdn.dribbble.com/userupload/13133188/file/original-2331747061f15217a2f16cc3d665c5b6.jpg)](https://github.com/globalcorporation/global_bot_app)\n\n### Global Studio Developer\n\n  The cross-platform Studio Developer application allows you to code on various platforms\n\n[![](https://cdn.dribbble.com/userupload/13133188/file/original-2331747061f15217a2f16cc3d665c5b6.jpg)](https://github.com/globalcorporation/global_bot_app)\n\n\u003ch3 align=\"center\"\u003e\n  Ads Gateway\n\n  ![](https://raw.githubusercontent.com/globalcorporation/.github/main/.github/logo/ads_gateway.png)\n\u003c/h3\u003e\n\n  **Applikasi** Cross platform advertising allows you to advertise on various platforms easily\n\n[![](https://cdn.dribbble.com/userupload/13133188/file/original-2331747061f15217a2f16cc3d665c5b6.jpg)](https://github.com/globalcorporation/coinlox)\n\n\u003ch3 align=\"center\"\u003e\n  Archivon\n\n  ![](https://raw.githubusercontent.com/globalcorporation/.github/main/.github/logo/archivon.png)\n\u003c/h3\u003e\n\n  **Applikasi** Linux based operating system which will be released\n\n[![](https://cdn.dribbble.com/userupload/13133188/file/original-2331747061f15217a2f16cc3d665c5b6.jpg)](https://github.com/globalcorporation/coinlox)\n\n\u003ch3 align=\"center\"\u003e\n  Coinlox\n\n  ![](https://raw.githubusercontent.com/globalcorporation/.github/main/.github/logo/coinlox.png)\n\u003c/h3\u003e\n\n  **Applikasi** Cross Platform Wallet allows you to store money on the internet safely\n\n[![](https://cdn.dribbble.com/userupload/13133188/file/original-2331747061f15217a2f16cc3d665c5b6.jpg)](https://github.com/globalcorporation/coinlox)\n\n\n\n### Global Bot Telegram\n\n  Super Bot Telegram allows you to manage various chat groups / private / channels as well as a place to buy and sell the products we sell, you can buy this service from\n  IDR: 25k / bulan\n  $: 1,5 Dollar\n\n[![](https://cdn.dribbble.com/userupload/13133188/file/original-2331747061f15217a2f16cc3d665c5b6.jpg)](https://github.com/globalcorporation/global_bot_telegram)\n\n### Global Userbot Telegram\n\n  Super Bot Telegram allows you to manage various chat groups / private / channels as well as a place to buy and sell the products we sell, you can buy this service from\n  IDR: 25k / bulan\n  $: 1,5 Dollar\n\n[![](https://cdn.dribbble.com/userupload/13133188/file/original-2331747061f15217a2f16cc3d665c5b6.jpg)](https://github.com/globalcorporation/global_userbot_telegram)\n\n### Global Bot Whatsapp\n\n  Super Bot Telegram allows you to manage various chat groups / private / channels as well as a place to buy and sell the products we sell, you can buy this service from\n  IDR: 25k / bulan\n  $: 1,5 Dollar\n\n[![](https://cdn.dribbble.com/userupload/13133188/file/original-2331747061f15217a2f16cc3d665c5b6.jpg)](https://github.com/globalcorporation/global_bot_whatsapp)\n\n## Social Media\n\n\u003ch3 align=\"center\"\u003e\n  Telegram\n  \u003cimg src=\"https://upload.wikimedia.org/wikipedia/commons/8/82/Telegram_logo.svg\" width=\"20\"\u003e\n\u003c/h3\u003e\n\n1. [Group Developer Global Public](https://t.me/DEVELOPER_GLOBAL_PUBLIC)\n\n## Product / Services\n\n1. **Clone Bot / Userbot**\n  Hi, do you want to have a bot / userbot with lots of features?. \n  - **Features**:\n    - **Repeat Message**\n    - **Manage Chat Private / Channel / Group**\n  - **Platform Support**:\n    - **Telegram**\n    - **Whatsapp**\n    - **Twitter**\n    - **Github**\n    - **Google** \n1. **Products**\n    - **Black Products**\n    - **Group / Channel**\n    - **Nsfw**\n    - **Payment Gateway**\n    - **Paid Promote**\n    - **Pre Release / Beta**\n    - **Promo Cheap**\n    - **Source Code Bot / USerbot**\n    - **Trade**\n2. **Services**\n    - **Developer**\n    - **Goal**\n    - **Partner**\n    - **Promote**\n    - **Recommendation**\n    - **Sortcut Cheat Sheet**\n    - **Terminate**\n    - **Upgrade**\n\n## How To Buy Services Or Products | Cara Beli Jasa Atau Products\n\n- **Via Telegram Bot**\n\n  - **Englisth**\n     \n     If you want to buy, you can use Telegram to automatically process the payment\n     (if the long process is not a **SCAM!!** it's possible that the **server is down** so the process could take longer. If in doubt, tap the report menu then fill in a complaint)\n\n     - Open Bot: https://t.me/GLOBAL_CORP_ORG_BOT\n     - Fill in personal data / subscribe to the channel\n     - Tap Main menu select services / products\n     - Select Products / Services\n     - Make sure there are enough coins\n     - Fill in the required data\n\n\n  - **Indonesia**\n\n     Jika kamu ingin membeli bisa lewat telegram automatis pembayaran hingga proses\n     (jika proses lama itu bukan **SCAM !!** kemungkinan **server down** jadi proses bisa lebih lama jika ragu tap menu report lalu isi keluhan)\n     -  Buka Bot: https://t.me/GLOBAL_CORP_ORG_BOT\n     -  Isi data pribadi / subscribe channel\n     -  Tap Main menu pilih services / products\n     -  Pilih Product / Services\n     -  Pastikan coin mencukupi\n     -  Isi data yang di butuhkan\n\n- **Via Telegram USER**\n  \n  -  Buka: https://t.me/general_user\n  -  Ucapin apapun yang kamu butuh jasa dev / apapun\n\n  \nVideo Tutorial\n[![Watch the video](https://img.youtube.com/vi/TY0Y21C6asM/maxresdefault.jpg)](https://www.youtube.com/watch?v=TY0Y21C6asM)\n\n- **Lewat App**\n\n  - **English** \n\n    If you want to see a product/service with a full demo, you can buy it via the app\n\n  - **Indonesia**\n\n    jika kamu ingin melihat product / jasa dengan full demo kamu bisa beli lewat app\n\n## 📺 Latest YouTube Videos\n\n  \u003c!-- prettier-ignore-start --\u003e\n  \u003c!-- BEGIN YOUTUBE-CARDS --\u003e\n[![Userbot LIFE TIME Subsription Telegram Murah Unlimited Akun Ultra FAST | Global Corporation](https://ytcards.demolab.com/?id=LfNt8A2fCLQ\u0026title=Userbot+LIFE+TIME+Subsription+Telegram+Murah+Unlimited+Akun+Ultra+FAST+%7C+Global+Corporation\u0026lang=id\u0026timestamp=1712129787\u0026background_color=%230d1117\u0026title_color=%23ffffff\u0026stats_color=%23dedede\u0026max_title_lines=1\u0026width=250\u0026border_radius=5 \"Userbot LIFE TIME Subsription Telegram Murah Unlimited Akun Ultra FAST | Global Corporation\")](https://www.youtube.com/watch?v=LfNt8A2fCLQ)\n[![Tolong 😭 Siapapun beli satu jasa aku ntr aku kasih harga seiklasnya / ada yang mau donasi | GLOBAL](https://ytcards.demolab.com/?id=BFl2AT_pdOw\u0026title=Tolong+%F0%9F%98%AD+Siapapun+beli+satu+jasa+aku+ntr+aku+kasih+harga+seiklasnya+%2F+ada+yang+mau+donasi+%7C+GLOBAL\u0026lang=id\u0026timestamp=1710988807\u0026background_color=%230d1117\u0026title_color=%23ffffff\u0026stats_color=%23dedede\u0026max_title_lines=1\u0026width=250\u0026border_radius=5 \"Tolong 😭 Siapapun beli satu jasa aku ntr aku kasih harga seiklasnya / ada yang mau donasi | GLOBAL\")](https://www.youtube.com/watch?v=BFl2AT_pdOw)\n[![Cara beli ai telegram versi bot dan cara pakai| Global Corporation](https://ytcards.demolab.com/?id=7LZhoklvS9A\u0026title=Cara+beli+ai+telegram+versi+bot+dan+cara+pakai%7C+Global+Corporation\u0026lang=id\u0026timestamp=1710937415\u0026background_color=%230d1117\u0026title_color=%23ffffff\u0026stats_color=%23dedede\u0026max_title_lines=1\u0026width=250\u0026border_radius=5 \"Cara beli ai telegram versi bot dan cara pakai| Global Corporation\")](https://www.youtube.com/watch?v=7LZhoklvS9A)\n[![Ai Userbot Telegram Demo Cara Pakai Dan Beli | Global Corporation](https://ytcards.demolab.com/?id=4mAZ6EgAhUo\u0026title=Ai+Userbot+Telegram+Demo+Cara+Pakai+Dan+Beli+%7C+Global+Corporation\u0026lang=id\u0026timestamp=1710936251\u0026background_color=%230d1117\u0026title_color=%23ffffff\u0026stats_color=%23dedede\u0026max_title_lines=1\u0026width=250\u0026border_radius=5 \"Ai Userbot Telegram Demo Cara Pakai Dan Beli | Global Corporation\")](https://www.youtube.com/watch?v=4mAZ6EgAhUo)\n[![CARA BELI USERBOT TELEGRAM CLOUD  | Global Corporation](https://ytcards.demolab.com/?id=uiDJwK9r3Cg\u0026title=CARA+BELI+USERBOT+TELEGRAM+CLOUD++%7C+Global+Corporation\u0026lang=id\u0026timestamp=1710900440\u0026background_color=%230d1117\u0026title_color=%23ffffff\u0026stats_color=%23dedede\u0026max_title_lines=1\u0026width=250\u0026border_radius=5 \"CARA BELI USERBOT TELEGRAM CLOUD  | Global Corporation\")](https://www.youtube.com/watch?v=uiDJwK9r3Cg)\n[![Cara Top Up Automatis Menggunakan Payment Gateway Di GLOBAL BOT APP](https://ytcards.demolab.com/?id=ADqzS5ORJsU\u0026title=Cara+Top+Up+Automatis+Menggunakan+Payment+Gateway+Di+GLOBAL+BOT+APP\u0026lang=id\u0026timestamp=1710721879\u0026background_color=%230d1117\u0026title_color=%23ffffff\u0026stats_color=%23dedede\u0026max_title_lines=1\u0026width=250\u0026border_radius=5 \"Cara Top Up Automatis Menggunakan Payment Gateway Di GLOBAL BOT APP\")](https://www.youtube.com/watch?v=ADqzS5ORJsU)\n\u003c!-- END YOUTUBE-CARDS --\u003e\n  \u003c!-- prettier-ignore-end --\u003e\n\n\u003c!-- END GLOBAL CORPORATION --\u003e","funding_links":["https://github.com/sponsors/azkadev","https://github.com/sponsors/generalfoss"],"categories":[],"sub_categories":[],"project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fazkadev%2Fsimulate","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fazkadev%2Fsimulate","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fazkadev%2Fsimulate/lists"}