Hello guys, Today we are going to next step of making website which is how to install and setup wordpress and make dummy website. Before going to deep, we have know that wordpress provide dummy website when we install the wordpress. After that we can changes into that dummy site as per our requirement. We can change theme of the site, add required plugins and get feature based on that, create categories, create pages, create posts and many more. Sounds like some difficult, but don’t worry everything is easy if we go from easy to hard. So today we simply…
-
-
Hello guys, Do you want to develop website even if you don’t have deep knowledge of developing?? Then today we are going to show step by step process to develop website for non technical person. Here is some basic stuff you have to done before going to develop website. Professional developers always prefer to test their project on locally before they make them live. And if you want to test your website before make it live to users you have to install WAMP or XAMPP server. Here we are going to install XAMPP server. For Wamp Installation Visit How To…
-
Hello guys, Today we are going to develop application that convert text to speech using flutter. For this we are going to use Flutter tts package. You can get more information about this package in following link. Text To Speech For video tutorial you can go through this. First you have to add dependency of tts into pubspec.yaml as below dependencies: flutter: sdk: flutter # The following adds the Cupertino Icons font to your application. # Use with the CupertinoIcons class for iOS style icons. cupertino_icons: ^0.1.3 flutter_tts: ^1.2.6 # add this line Now for android you have to change…
-
Hello guys, Do you want to develop website even if you don’t have deep knowledge of developing?? Then today we are going to show step by step process to develop website for non technical person. Here is some basic stuff you have to done before going to develop website. Professional developers always prefer to test their project on locally before they make them live. And if you want to test your website before make it live to users you have to install WAMP or XAMPP server. Here we are going to install WAMP server. For install XAMPP server Visit How…
-
Hello guys, Today we are going to learn how to implement navigation drawer or side bar using Flutter. In this article we are implementing basic side bar, in upcoming articles we are going to learn material sidebar. So let’s get started. First, create new flutter project and then create main class SideBar and call inside main method. The code is given below. import 'package:flutter/material.dart'; void main() => runApp(SideBar()); class SideBar extends StatelessWidget { @override Widget build(BuildContext context) { return MaterialApp( debugShowCheckedModeBanner: false, home: HomePage(), ); } } Now, we can see in home we are calling object of HomePage class.…
-
Hello guys, Today we are going to learn how to implement ListView.builder() in flutter. As we know that in android developement when we have list of items and required to list out in screen we are using adapter for that purpose, similar manner in flutter we can use ListView.builder(), using which we can use list out list of item in custom designed block. So let’s get started… First create the new flutter project and then in main.dart file code as below for main screen as below. import 'package:flutter/material.dart'; void main() => runApp(MyApp()); class MyApp extends StatelessWidget { @override Widget build(BuildContext context) {…
-
In this article, we are going to learn how to make simple Calculator android and ios application using flutter. For this purpose we are using two library which are given below. material.dart math_expressions.dart First library is used in any flutter application for GUI purpose, and second one is used for maths expression solve. In pubspec.yaml file you have to add following library. dependencies: flutter: sdk: flutter # The following adds the Cupertino Icons font to your application. # Use with the CupertinoIcons class for iOS style icons. cupertino_icons: ^0.1.3 math_expressions: ^2.0.0 Now click on pub upgrade on upper side. For…
-
A queue is a simple data structure that allows elements to be inserted from one end, called the rear (also called tail), and deleted from the other end, called the front (also called head).This behavior is called FIFO (First in First Out). TerminologyThe process of adding new elements into the queue is called enqueue.The process of removal of an element from the queue is called dequeue. ApplicationsQueues are used whenever we need to manage objects in order starting with the first one in.Scenarios include printing documents on a printer, call center systems answering people on hold people, and so on.…
-
A stack is a simple data structure that adds and removes elements in a particular order.Every time an element is added, it goes on the “top” of the stack. Only an element at the top of the stack can be removed, just like a stack of plates. This behavior is called LIFO (Last In, First Out). TerminologyAdding a new element onto the stack is called push.Removing an element from the stack is called pop. ApplicationsStacks can be used to create undo-redo functionalities, parsing expressions (infix to postfix/prefix conversion), and much more. A stack can be implemented using an array or…
-
Android Studio’s Project and editor windows I introduced Android Studio’s main window at the end of Part 1. This window is divided into several areas, including a Project window where you identify an app’s resource files, and various editor windows where you’ll write the code and specify resources for mobile apps in Android Studio. The Project window and an editor window are shown in Figure 1. The Project window highlights W2A, which is the name of the app’s W2A.java source file (although the .java file extension isn’t shown). Corresponding to W2A is an editor window, reached by double-clicking W2A in the Project window. The editor window reveals the…