Skip to content

Learn Programming with Real Apps

Learn Programming with Real Apps

  • Home
  • .NET
    • ASP.NET Core MVC
    • ASP.NET Core Web API
    • Entity Framework Core
    • ASP.NET MVC
    • ASP.NET Core Razor Pages
    • ASP.NET Web API
    • Entity Framework
    • C#
  • Java
    • Spring Framework
      • Spring MVC
      • Spring Boot Data JPA
      • Spring Boot MongoDB
      • Spring Boot JDBC
      • Spring Boot Hibernate
      • Spring Data MongoDB
      • Spring JMS
      • Spring Rest API
    • JSF Framework
    • Struts Framework
    • JSP-Servlet
    • Hibernate
    • Java XML
    • JDBC
    • Java Restful Web Services
    • Java
  • Full Stack
    • Angular
    • React
      • React TypeScript
      • React Functional Components
      • ReactJS
    • ExpressJS
    • NestJS
    • MongoDB
    • ECMAScript
    • HTML, CSS, JavaScript
      • HTML 5
  • PHP & MySQL
    • PHP
    • Laravel Framework
    • CodeIgniter Framework
  • Mobile
    • Dart
    • Flutter
    • Android
  • Golang
    • Golang
    • GORM
    • Golang and MySQL
    • Golang and MongoDB
    • Golang RESTful Web API
    • Microservices
Main Menu

Mobile

Dart

Declare Variables with Dynamic Keyword in Dart

void main() { dynamic myVariable = 20; print(“my variable: $myVariable”); myVariable = 4.5; print(“my variable: $myVariable”); myVariable = true; print(“my variable: $myVariable”); myVariable = “acc1”; print(“my variable: $myVariable”); myVariable = …

Declare Variables with Dynamic Keyword in Dart Read More
Dart

Declare Variables with Var Keyword in Dart

void main() { var age = 20; var price = 4.5; var status = true; var username = “acc1”; print(“age: $age”); print(“price: $price”); print(“status: $status”); print(“username: $username”); } Output age: …

Declare Variables with Var Keyword in Dart Read More
Dart

Declare Variables with Data Types in Dart

void main() { int age = 20; double price = 4.5; num score = 8.1; bool status = true; String username = “acc1”; print(“age: $age”); print(“price: $price”); print(“score: $score”); print(“status: …

Declare Variables with Data Types in Dart Read More
Android

Delete Object with Web API in Retrofit in Android

Create Spring Boot Project On the Eclipse, create a Spring Boot project Enter Project Information: Name: WebAPIServer Group: com.demo Artifact: WebAPIServer Description: Web API Server Package: com.demo Select the technologies …

Delete Object with Web API in Retrofit in Android Read More
Android

Update Object with Web API in Retrofit in Android

Create Spring Boot Project On the Eclipse, create a Spring Boot project Enter Project Information: Name: WebAPIServer Group: com.demo Artifact: WebAPIServer Description: Web API Server Package: com.demo Select the technologies …

Update Object with Web API in Retrofit in Android Read More
Android

Create Object with Web API in Retrofit in Android

Create Spring Boot Project On the Eclipse, create a Spring Boot project Enter Project Information: Name: WebAPIServer Group: com.demo Artifact: WebAPIServer Description: Web API Server Package: com.demo Select the technologies …

Create Object with Web API in Retrofit in Android Read More
Android

Use Parameters with Web API in Retrofit in Android

Create Spring Boot Project On the Eclipse, create a Spring Boot project Enter Project Information: Name: WebAPIServer Group: com.demo Artifact: WebAPIServer Description: Web API Server Package: com.demo Select the technologies …

Use Parameters with Web API in Retrofit in Android Read More
Android

Read Object List from Web API with Retrofit in Android

Create Spring Boot Project On the Eclipse, create a Spring Boot project Enter Project Information: Name: WebAPIServer Group: com.demo Artifact: WebAPIServer Description: Web API Server Package: com.demo Select the technologies …

Read Object List from Web API with Retrofit in Android Read More
Android

Read Object from Web API with Retrofit in Android

Create Spring Boot Project On the Eclipse, create a Spring Boot project Enter Project Information: Name: WebAPIServer Group: com.demo Artifact: WebAPIServer Description: Web API Server Package: com.demo Select the technologies …

Read Object from Web API with Retrofit in Android Read More
Android

Read Simple Values from Web API with Retrofit in Android

Create Spring Boot Project On the Eclipse, create a Spring Boot project Enter Project Information: Name: WebAPIServer Group: com.demo Artifact: WebAPIServer Description: Web API Server Package: com.demo Select the technologies …

Read Simple Values from Web API with Retrofit in Android Read More
Android

Custom Layout in MultiAutoCompleteTextView in Android

Create Project Create new project in Android Studio with steps as below: Step 1: Input Project Name and Select Project Location Step 2: Select SDK for Android App Step 3: …

Custom Layout in MultiAutoCompleteTextView in Android Read More
Android

Use MultiAutoCompleteTextView in Android

Create Project Create new project in Android Studio with steps as below: Step 1: Input Project Name and Select Project Location Step 2: Select SDK for Android App Step 3: …

Use MultiAutoCompleteTextView in Android Read More
Android

Custom Layout in AutoCompleteTextView in Android

Create Project Create new project in Android Studio with steps as below: Step 1: Input Project Name and Select Project Location Step 2: Select SDK for Android App Step 3: …

Custom Layout in AutoCompleteTextView in Android Read More
Android

Use AutoCompleteTextView in Android

Create Project Create new project in Android Studio with steps as below: Step 1: Input Project Name and Select Project Location Step 2: Select SDK for Android App Step 3: …

Use AutoCompleteTextView in Android Read More
Android

Create Custom Dialog in Android

Create Project Create new project in Android Studio with steps as below: Step 1: Input Project Name and Select Project Location Step 2: Select SDK for Android App Step 3: …

Create Custom Dialog in Android Read More
Android

Create Confirm Dialog in Android

Create Project Create new project in Android Studio with steps as below: Step 1: Input Project Name and Select Project Location Step 2: Select SDK for Android App Step 3: …

Create Confirm Dialog in Android Read More
Android

Create Information Dialog in Android

Create Project Create new project in Android Studio with steps as below: Step 1: Input Project Name and Select Project Location Step 2: Select SDK for Android App Step 3: …

Create Information Dialog in Android Read More
Android

Create Custom Toast in Android

Create Project Create new project in Android Studio with steps as below: Step 1: Input Project Name and Select Project Location Step 2: Select SDK for Android App Step 3: …

Create Custom Toast in Android Read More
Android

Create Dynamically Popup Menu in Android

Create Project Create new project in Android Studio with steps as below: Step 1: Input Project Name and Select Project Location Step 2: Select SDK for Android App Step 3: …

Create Dynamically Popup Menu in Android Read More
Android

Create Popup Menu from XML File in Android

Create Project Create new project in Android Studio with steps as below: Step 1: Input Project Name and Select Project Location Step 2: Select SDK for Android App Step 3: …

Create Popup Menu from XML File in Android Read More
Android

Create Dynamically Context Menu in Android

Create Project Create new project in Android Studio with steps as below: Step 1: Input Project Name and Select Project Location Step 2: Select SDK for Android App Step 3: …

Create Dynamically Context Menu in Android Read More
Android

Create Context Menu from XML File in Android

Create Project Create new project in Android Studio with steps as below: Step 1: Input Project Name and Select Project Location Step 2: Select SDK for Android App Step 3: …

Create Context Menu from XML File in Android Read More
Android

Create Dynamically Option Menu in Android

Create Project Create new project in Android Studio with steps as below: Step 1: Input Project Name and Select Project Location Step 2: Select SDK for Android App Step 3: …

Create Dynamically Option Menu in Android Read More
Android

Create Option Menu from XML File in Android

Create Project Create new project in Android Studio with steps as below: Step 1: Input Project Name and Select Project Location Step 2: Select SDK for Android App Step 3: …

Create Option Menu from XML File in Android Read More
Android

Create Custom Layout in RecycleView in Android

Create Project Create new project in Android Studio with steps as below: Step 1: Input Project Name and Select Project Location Step 2: Select SDK for Android App Step 3: …

Create Custom Layout in RecycleView in Android Read More
Android

Create Custom Layout in CardView in Android

Create Project Create new project in Android Studio with steps as below: Step 1: Input Project Name and Select Project Location Step 2: Select SDK for Android App Step 3: …

Create Custom Layout in CardView in Android Read More
Android

Create DataTable in Android

Create Project Create new project in Android Studio with steps as below: Step 1: Input Project Name and Select Project Location Step 2: Select SDK for Android App Step 3: …

Create DataTable in Android Read More
Android

Read, Write and Delete File in External Storage

Create Project Create new project in Android Studio with steps as below: Step 1: Input Project Name and Select Project Location Step 2: Select SDK for Android App Step 3: …

Read, Write and Delete File in External Storage Read More
Android

Read, Write and Delete File in Internal Storage

Create Project Create new project in Android Studio with steps as below: Step 1: Input Project Name and Select Project Location Step 2: Select SDK for Android App Step 3: …

Read, Write and Delete File in Internal Storage Read More
Android

Create and Scan BarCode in Android

Create Project Create new project in Android Studio with steps as below: Step 1: Input Project Name and Select Project Location Step 2: Select SDK for Android App Step 3: …

Create and Scan BarCode in Android Read More

Posts pagination

1 2 Next

Latest Posts

Declare Variables with Dynamic Keyword in Dart

December 1, 2024December 1, 2024

Declare Variables with Var Keyword in Dart

December 1, 2024December 1, 2024

Declare Variables with Data Types in Dart

December 1, 2024December 1, 2024

Middleware in Laravel

July 21, 2022November 18, 2024

Shopping Cart with Session and Eloquent ORM in Laravel

July 19, 2022November 18, 2024

Multi Select AutoComplete Search from Database with Eloquent ORM in Laravel Framework

July 5, 2022November 18, 2024

Archives

  • December 2024 (3)
  • July 2022 (10)
  • June 2022 (57)
  • January 2022 (1)
  • December 2021 (11)
  • November 2021 (30)
  • October 2021 (8)
  • February 2021 (24)
  • January 2021 (38)
  • May 2020 (6)
  • April 2020 (17)
  • November 2019 (15)
  • September 2019 (47)
  • August 2019 (7)
  • July 2019 (35)
  • May 2019 (44)
  • April 2019 (62)
  • March 2019 (63)
  • January 2019 (6)
  • December 2018 (29)
  • November 2018 (93)
  • October 2018 (41)
  • September 2018 (76)
  • August 2018 (82)
  • July 2018 (92)
  • June 2018 (131)
  • May 2018 (5)
  • April 2018 (59)

Popular Tags

Aggregate in CodeIgniter ajax in codeigniter Ajax in Laravel Framework ASP.NET Core MVC Average in Eloquent ORM CodeIgniter Codeigniter Form Validation CodeIgniter Framework CodeIgniter Model and Entity Count in Eloquent ORM CrudRepository Interface in Spring Boot MongoDB Date in Eloquent ORM Declare Variables in dart Dynamic Type in C# Eloquent ORM Eloquent ORM in Laravel Eloquent ORM in Laravel Framework Equal Operator in Eloquent ORM Form Validation CodeIgniter GroupBy in Eloquent ORM Having in Eloquent ORM Laravel Ajax Laravel Session Laravel Validation limit in Eloquent ORM limit in mongodb Max in Eloquent ORM Min in Eloquent ORM MongoDB mongodb in spring boot MongoDB in Spring Data JPA ORM in CodeIgniter PagingAndSortingRepository in Spring Data JPA Passing data from controller to view in Laravel Query Builder Class in CodeIgniter Query Builder in CodeIgniter Relationship in Eloquent ORM in Laravel Framework Session in Laravel Framework Sort in Eloquent ORM sort in mongodb Spring Boot MongoDB sum in Eloquent ORM Transfer Data from Controller to View in Laravel Validation Rule in CodeIgniter Validation Rule in Laravel Framework

Copyright © 2025 learningprogramming.net