Meen Academy

Meen Academy Mubeen is a full-stack web & mobile apps developer who is very proficient in MEAN.js, Flutter and ROR

“ Meen Academy is a web and mobile app learning platform that provides tutorials in all technology like Flutter, Angular, JavaScript, Nodejs and TypeScript ”

02/02/2024
In Flutter, the Scaffold widget provides a basic structure for implementing the Material Design layout for your app. It ...
20/06/2023

In Flutter, the Scaffold widget provides a basic structure for implementing the Material Design layout for your app. It serves as a container for the major visual elements, such as app bars, drawers, floating action buttons, and more. The Scaffold widget is typically used as the root widget of a Flutter screen. Here's an example of how you can use the…...

In Flutter, the Scaffold widget provides a basic structure for implementing the Material Design layout for your app. It serves as a container for the major visual elements, such as app bars, drawers, floating action buttons, and more. The Scaffold widget is typically used as the root widget of a Flu...

In Flutter, the Text widget is used to display a single line or multiple lines of text on the screen. It allows you to c...
20/06/2023

In Flutter, the Text widget is used to display a single line or multiple lines of text on the screen. It allows you to customize the appearance of the text, such as the font, size, color, alignment, and more. Here's an example of how you can use the Text widget in Flutter: Text( 'Hello, Flutter!', style: TextStyle( fontSize: 24, fontWeight: FontWeight.bold, color: Colors.blue, ), ); …...

In Flutter, the Text widget is used to display a single line or multiple lines of text on the screen. It allows you to customize the appearance of the text, such as the font, size, color, alignment, and more. Here’s an example of how you can use the Text widget in Flutter: In the example […]

To create a key.jks file for use with the Google Play Console, you'll need to follow these steps: Install Java Developme...
19/06/2023

To create a key.jks file for use with the Google Play Console, you'll need to follow these steps: Install Java Development Kit (JDK): Ensure that you have the Java Development Kit installed on your computer. You can download the JDK from the Oracle website ( and follow the installation instructions. Set up Java Environment Variables: Configure the Java environment variables on your system....

To create a key.jks file for use with the Google Play Console, you’ll need to follow these steps: Install Java Development Kit (JDK): Ensure that you have the Java Development Kit installed on your computer. You can download the JDK from the Oracle website (https://www.oracle.com/java/technologies...

In Flutter, the ListTile widget is a versatile and commonly used widget for creating a single fixed-height row in a list...
19/06/2023

In Flutter, the ListTile widget is a versatile and commonly used widget for creating a single fixed-height row in a list or as a standalone component within a user interface. It is typically used in conjunction with other widgets like ListView, ListTileTheme, or Card to build scrollable lists with rich content. Here's an example of how you can use the…...

In Flutter, the ListTile widget is a versatile and commonly used widget for creating a single fixed-height row in a list or as a standalone component within a user interface. It is typically used in conjunction with other widgets like ListView, ListTileTheme, or Card to build scrollable lists with r...

In Flutter, the InkWell widget provides a rectangular area that responds to touch gestures. It's commonly used to make i...
12/06/2023

In Flutter, the InkWell widget provides a rectangular area that responds to touch gestures. It's commonly used to make interactive elements in the user interface, such as buttons, cards, or list items. The InkWell widget can also provide visual feedback, such as a splash effect, when the user taps on it. Here's an example of how to use the InkWell…...

In Flutter, the InkWell widget provides a rectangular area that responds to touch gestures. It’s commonly used to make interactive elements in the user interface, such as buttons, cards, or list items. The InkWell widget can also provide visual feedback, such as a splash effect, when the user taps...

In Flutter, the ClipRRect widget is used to clip the child widget within a rounded rectangle shape. It allows you to rou...
12/06/2023

In Flutter, the ClipRRect widget is used to clip the child widget within a rounded rectangle shape. It allows you to round the corners of a widget and create a visually pleasing clipped effect. Here's an example of how to use the ClipRRect widget in Flutter: import 'package:flutter/material.dart'; class MyClippedWidget extends StatelessWidget { Widget build(BuildContext context) { return ClipRRect( borderRadius: BorderRadius.circular(12.0), child: Container( width: 200.0, height: 200.0, color: Colors.blue, child: Center( child: Text( 'Clipped Widget', style: TextStyle( color: Colors.white, fontSize: 24.0, ), ), ), ), ); } } …...

In Flutter, the ClipRRect widget is used to clip the child widget within a rounded rectangle shape. It allows you to round the corners of a widget and create a visually pleasing clipped effect. Here’s an example of how to use the ClipRRect widget in Flutter: In the above example, we create a ClipR...

In Flutter, the Card widget is a material design-based container that can be used to display content in a card-like form...
12/06/2023

In Flutter, the Card widget is a material design-based container that can be used to display content in a card-like format. It provides a visually appealing way to present information and can be customized to suit different design requirements. Here's an example of how to use the Card widget in Flutter: import 'package:flutter/material.dart'; class MyCard extends StatelessWidget { Widget build(BuildContext context) { return Card( child: ListTile( leading: Icon(Icons.album), title: Text('Card Title'), subtitle: Text('Card Subtitle'), trailing: Icon(Icons.more_vert), ), ); } } …...

In Flutter, the Card widget is a material design-based container that can be used to display content in a card-like format. It provides a visually appealing way to present information and can be customized to suit different design requirements. Here’s an example of how to use the Card widget in Fl...

In Angular, a module is a mechanism for organizing and structuring an Angular application into functional units. Modules...
12/06/2023

In Angular, a module is a mechanism for organizing and structuring an Angular application into functional units. Modules in Angular help in managing the dependencies and encapsulating related components, directives, services, and other artifacts together. An Angular module is defined using the decorator, which allows you to configure various aspects of the module. The decorator is typically applied to a TypeScript class that serves as the module's declaration....

In Angular, a module is a mechanism for organizing and structuring an Angular application into functional units. Modules in Angular help in managing the dependencies and encapsulating related components, directives, services, and other artifacts together. An Angular module is defined using the ...

In JavaScript, the Math.random() function generates a random decimal number between 0 (inclusive) and 1 (exclusive). The...
12/06/2023

In JavaScript, the Math.random() function generates a random decimal number between 0 (inclusive) and 1 (exclusive). The Math.floor() and Math.ceil() functions are used to round numbers down and up, respectively, to the nearest integer. Here's an explanation of each function: Math.random(): This function returns a random decimal number between 0 (inclusive) and 1 (exclusive). It can be used to generate random numbers within a specific range by multiplying the result with the desired range and adding an offset if necessary....

In JavaScript, the Math.random() function generates a random decimal number between 0 (inclusive) and 1 (exclusive). The Math.floor() and Math.ceil() functions are used to round numbers down and up, respectively, to the nearest integer. Here’s an explanation of each function: Math.random(): This f...

In JavaScript, the DOM (Document Object Model) is a programming interface that represents the structure and content of a...
09/06/2023

In JavaScript, the DOM (Document Object Model) is a programming interface that represents the structure and content of a web page. It allows you to interact with the elements in the page using JavaScript code. Here's an example that demonstrates how to manipulate the DOM using JavaScript:

In JavaScript, the DOM (Document Object Model) is a programming interface that represents the structure and content of a web page. It allows you to interact with the elements in the page using JavaScript code. Here’s an example that demonstrates how to manipulate the DOM using JavaScript: In the a...

To implement a horizontal GridView in Flutter, you can use the GridView.builder constructor and set the scrollDirection ...
09/06/2023

To implement a horizontal GridView in Flutter, you can use the GridView.builder constructor and set the scrollDirection property to Axis.horizontal. Here's an example:

To implement a horizontal GridView in Flutter, you can use the GridView.builder constructor and set the scrollDirection property to Axis.horizontal. Here’s an example: In the above code, the GridView.builder widget is used with scrollDirection set to Axis.horizontal to make the grid view scroll ho...

Address

Haleem Market Khanpur
Punjab
64100

Alerts

Be the first to know and let us send you an email when Meen Academy posts news and promotions. Your email address will not be used for any other purpose, and you can unsubscribe at any time.

Contact The School

Send a message to Meen Academy:

Shortcuts

Share