{"id":18421252,"url":"https://github.com/thompsonemerson/flutter-experimental","last_synced_at":"2026-05-07T18:35:48.786Z","repository":{"id":146425457,"uuid":"268133193","full_name":"thompsonemerson/flutter-experimental","owner":"thompsonemerson","description":"Repository for experiments with Flutter","archived":false,"fork":false,"pushed_at":"2020-05-30T18:46:36.000Z","size":35865,"stargazers_count":0,"open_issues_count":0,"forks_count":0,"subscribers_count":2,"default_branch":"master","last_synced_at":"2025-04-13T11:59:17.763Z","etag":null,"topics":["dart","development","experimental","flutter","flutter-app","mobile"],"latest_commit_sha":null,"homepage":null,"language":"Dart","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":null,"status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/thompsonemerson.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":null,"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}},"created_at":"2020-05-30T18:00:20.000Z","updated_at":"2020-05-30T18:46:39.000Z","dependencies_parsed_at":"2023-07-10T01:01:10.066Z","dependency_job_id":null,"html_url":"https://github.com/thompsonemerson/flutter-experimental","commit_stats":null,"previous_names":[],"tags_count":0,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/thompsonemerson%2Fflutter-experimental","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/thompsonemerson%2Fflutter-experimental/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/thompsonemerson%2Fflutter-experimental/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/thompsonemerson%2Fflutter-experimental/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/thompsonemerson","download_url":"https://codeload.github.com/thompsonemerson/flutter-experimental/tar.gz/refs/heads/master","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":248710436,"owners_count":21149188,"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":["dart","development","experimental","flutter","flutter-app","mobile"],"created_at":"2024-11-06T04:24:55.745Z","updated_at":"2026-05-07T18:35:43.768Z","avatar_url":"https://github.com/thompsonemerson.png","language":"Dart","funding_links":[],"categories":[],"sub_categories":[],"readme":"# ByteBank\n\n\u003cp align=\"center\"\u003e\n  \u003cimg src=\"http://upload-gifs.s3-sa-east-1.amazonaws.com/b00af167-4d08-4a53-9db0-63a1cbeaea59_Screenshot_1590862221.png\" width=\"200\"\u003e\n  \u003cimg src=\"http://upload-gifs.s3-sa-east-1.amazonaws.com/862f686c-9f03-476e-85a1-168e2fa68f6f_Screenshot_1590862299.png\" width=\"200\"\u003e\n  \u003cimg src=\"http://upload-gifs.s3-sa-east-1.amazonaws.com/b0269d28-d9aa-4e10-83c6-f140554dfc97_Screenshot_1590862352.png\" width=\"200\"\u003e\n  \u003cimg src=\"http://upload-gifs.s3-sa-east-1.amazonaws.com/55986e85-6ea4-468d-9e05-d433dec4e245_Screenshot_1590862647.png\" width=\"200\"\u003e\n\u003c/p\u003e\n\n## Getting Started\n\nThis project is a starting point for a Flutter application.\n\nA few resources to get you started if this is your first Flutter project:\n\n- [Lab: Write your first Flutter app](https://flutter.dev/docs/get-started/codelab)\n- [Cookbook: Useful Flutter samples](https://flutter.dev/docs/cookbook)\n\nFor help getting started with Flutter, view our\n[online documentation](https://flutter.dev/docs), which offers tutorials,\nsamples, guidance on mobile development, and a full API reference.\n\n\u003cbr\u003e\n\n## Web API [required]\nSpring Boot Web API for consumption of the ByteBank Flutter App\n\n### Features\n- `GET` show transactions\n- `POST` create transaction\n\n### How to run\n```bash\n$ java -jar server.jar\n```\n\u003e the api was built based on Java 8, to work as expected, version 8 is recommended\n\n### End-points\n- GET: `/transactions`\n```json\n// demo response\n[\n    {\n        \"id\": \"b9663ef3-3749-400e-be8f-1280db94aac8\",\n        \"value\": 200.00,\n        \"contact\": {\n            \"name\": \"Fulano\",\n            \"accountNumber\": 1000\n        },\n        \"dateTime\": \"2020-05-30 15:32:13\"\n    },\n    {\n        \"id\": \"d1bf689c-caa2-4e45-b1fc-5a90b10d6d48\",\n        \"value\": 200.00,\n        \"contact\": {\n            \"name\": \"Beltrano\",\n            \"accountNumber\": 1500\n        },\n        \"dateTime\": \"2020-05-30 15:36:23\"\n    }\n]\n```\n\n- POST: `/transactions`\n\u003e It's necessary to send `password` = `1000` in the request header\n```json\n// demo request body\n{\n  \t\"value\": 200.0,\n  \t\"contact\": {\n  \t\t\"name\": \"Thompson\",\n  \t\t\"accountNumber\": 1000\n  \t}\n}\n\n// demo response\n{\n      \"id\": \"b9663ef3-3749-400e-be8f-1280db94aac8\",\n      \"value\": 200.00,\n      \"contact\": {\n          \"name\": \"Thompson\",\n          \"accountNumber\": 1000\n      },\n      \"dateTime\": \"2020-05-30 11:07:26\"\n}\n```\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fthompsonemerson%2Fflutter-experimental","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fthompsonemerson%2Fflutter-experimental","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fthompsonemerson%2Fflutter-experimental/lists"}