02/02/2024
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
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…...
Scaffold Widget in Flutter - Meen Academy 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...
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, ), ); …...
Text Widget in Flutter - Meen Academy 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 […]
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....
How to Generate Key Store Using Key Tool and Export Public Certificate from JKS File - Meen Academy 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...
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…...
ListTile Widget in flutter - Meen Academy 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...
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…...
InkWell Widget in Flutter - Meen Academy 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...
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, ), ), ), ), ); } } …...
ClipRRect Widget in Flutter - Meen Academy 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...
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), ), ); } } …...
Card Widget in Flutter - Meen Academy 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...
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....
What is module in Angular? - Meen Academy 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 ...
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....
Math.random, Math.floor, Math.ceil in Javascript - Meen Academy 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...
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:
What is DOM in Javascript? - Meen Academy 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...
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:
How to implement a horizontal GridView in Flutter - Meen Academy 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...
Click here to claim your Sponsored Listing.
Location
Category
Contact the school
Website
Address
Punjab
64100