In this article you’ll learn How To Play Video & Audio using the Flutter Framework – build for the Web Platform. You’ll need probably few extra steps described in the plugins, if you target the Mobile Platforms. Both media types are not native to any platform and cannot be drawn by the Skia Library –…
Tag: flutterdev
Looking at Technologies Beyond The Magic
After Looking at Different Technologies and Tech Stacks Beyond The Magic that the words that describe them draw, you either become guru or skeptic. There are endless numbers of different Programming Languages, Frameworks, Libraries, Technologies and approaches. Do you think where it is located. There is the very basic Client-Server architecture – old as the…
How to WordPress Pages JSON API & Demo: Flutter Web
Let me show you the WordPress Pages JSON API and how to display them in a Simple Flutter Web App. The Data Model I’ll first start by explaining the Data Model. You could open the pages from URL template like this: https://<wp>/wp-json/wp/v2/pages. The JSON Model is as follows: id: Integer title: Object with field “rendered”…
How to read WordPress Products JSON API and show them with Flutter Web
The WordPress Products API returns JSON that contains all data. In the result are included the tags, the categories, the images and all fields. You could display the product info with one API call. The URL is formed like this: https://<wp>/wp-json/wc/store/products. The fields here are: id: Integer name: String description: String (HTML) – the explanation…
How to read WordPress Users and show Them with Flutter Web
The Content Management Platform – WordPress – also has User System inside. User Centered are almost all the Applications around the Internet. WordPress offers Administrative Visual Interface, Roles Editing and many more things integrated or offered as a plugin. In this article I’m gonna explain how to read WordPress Users from the WP JSON Rest…
How to read WordPress Posts & show Them with Flutter Web
In this article I’m gonna continue the tutorial of reading the WP JSON API to how you how to read the WordPress Posts and display them in Flutter Web Application. The Information is located on the URL: https://<wp>/wp-json/wp/v2/posts. It has the following JSON Data Model: The important fields of this complex WordPress Posts array/object –…
How to grab WordPress Categories and show them in Flutter Web
I’ll continue my previous post about Consuming WordPress JSON API and Tags by showing you how to Grab the Categories and their related Posts or Products from the JSON API of a WordPress Web Site. Load Post Categories The Post Categories list endpoint is located under the address https://<wp>/wp-json/wp/v2/categories[?parent=<id>]. It has the following JSON Model:…
How to grab WordPress Tags from JSON API and show them with Flutter Web
I’ll continue my previous post about Consuming WordPress JSON API by showing you how to Grab the Tags and their related Posts or Products from the JSON API of a WordPress Web Site. If you have a WordPress Site, you probably also have available several REST endpoints described in technical detail in the WordPress.org documentation….
How to make a Flutter App [with Source Code] Multi-Lingual using TranslateApp Tool
This article is a showcase of – How to make an Cross-Platform App Multi-Lingual using TranslateApp – a Tool that went beyond just Java Desktop and Backend, Android, Web(JavaScript), and now Flutter. Assuming you have Android Studio or Visual Studio Code and you have also Downloaded the Flutter SDK. After You create a new Project via…