{"id":82,"date":"2024-07-04T07:52:51","date_gmt":"2024-07-04T07:52:51","guid":{"rendered":"https:\/\/flutterfever.com\/news\/?p=82"},"modified":"2024-07-04T07:52:52","modified_gmt":"2024-07-04T07:52:52","slug":"create-an-app-to-print-the-multiplication-table-in-flutter-of-a-given-number","status":"publish","type":"post","link":"https:\/\/flutterfever.com\/news\/create-an-app-to-print-the-multiplication-table-in-flutter-of-a-given-number\/","title":{"rendered":"Create an app to print the multiplication table in Flutter of a given number"},"content":{"rendered":"\n<p>In this tutorial, we\u2019ll build a multiplication table in flutter app where users can enter a number and see its multiplication table. This app will be a fantastic exercise for beginners to understand state management, text input handling, and dynamic list generation in Flutter.<\/p>\n\n\n\n<div id=\"ez-toc-container\" class=\"ez-toc-v2_0_69_1 counter-hierarchy ez-toc-counter ez-toc-grey ez-toc-container-direction\">\n<div class=\"ez-toc-title-container\">\n<p class=\"ez-toc-title\" style=\"cursor:inherit\">Table of Contents<\/p>\n<span class=\"ez-toc-title-toggle\"><a href=\"#\" class=\"ez-toc-pull-right ez-toc-btn ez-toc-btn-xs ez-toc-btn-default ez-toc-toggle\" aria-label=\"Toggle Table of Content\"><span class=\"ez-toc-js-icon-con\"><span class=\"\"><span class=\"eztoc-hide\" style=\"display:none;\">Toggle<\/span><span class=\"ez-toc-icon-toggle-span\"><svg style=\"fill: #999;color:#999\" xmlns=\"http:\/\/www.w3.org\/2000\/svg\" class=\"list-377408\" width=\"20px\" height=\"20px\" viewBox=\"0 0 24 24\" fill=\"none\"><path d=\"M6 6H4v2h2V6zm14 0H8v2h12V6zM4 11h2v2H4v-2zm16 0H8v2h12v-2zM4 16h2v2H4v-2zm16 0H8v2h12v-2z\" fill=\"currentColor\"><\/path><\/svg><svg style=\"fill: #999;color:#999\" class=\"arrow-unsorted-368013\" xmlns=\"http:\/\/www.w3.org\/2000\/svg\" width=\"10px\" height=\"10px\" viewBox=\"0 0 24 24\" version=\"1.2\" baseProfile=\"tiny\"><path d=\"M18.2 9.3l-6.2-6.3-6.2 6.3c-.2.2-.3.4-.3.7s.1.5.3.7c.2.2.4.3.7.3h11c.3 0 .5-.1.7-.3.2-.2.3-.5.3-.7s-.1-.5-.3-.7zM5.8 14.7l6.2 6.3 6.2-6.3c.2-.2.3-.5.3-.7s-.1-.5-.3-.7c-.2-.2-.4-.3-.7-.3h-11c-.3 0-.5.1-.7.3-.2.2-.3.5-.3.7s.1.5.3.7z\"\/><\/svg><\/span><\/span><\/span><\/a><\/span><\/div>\n<nav><ul class='ez-toc-list ez-toc-list-level-1 ' ><li class='ez-toc-page-1 ez-toc-heading-level-2'><a class=\"ez-toc-link ez-toc-heading-1\" href=\"https:\/\/flutterfever.com\/news\/create-an-app-to-print-the-multiplication-table-in-flutter-of-a-given-number\/#Multiplication_table_in_flutter_stepwise\" title=\"Multiplication table in flutter stepwise\">Multiplication table in flutter stepwise<\/a><ul class='ez-toc-list-level-3' ><li class='ez-toc-heading-level-3'><a class=\"ez-toc-link ez-toc-heading-2\" href=\"https:\/\/flutterfever.com\/news\/create-an-app-to-print-the-multiplication-table-in-flutter-of-a-given-number\/#Step_1_Setting_up_multiplication_table_in_flutter\" title=\"Step 1: Setting up multiplication table in flutter\">Step 1: Setting up multiplication table in flutter<\/a><\/li><li class='ez-toc-page-1 ez-toc-heading-level-3'><a class=\"ez-toc-link ez-toc-heading-3\" href=\"https:\/\/flutterfever.com\/news\/create-an-app-to-print-the-multiplication-table-in-flutter-of-a-given-number\/#Step_2_Main_Application_%E2%80%93_multiplication_table_in_flutter\" title=\"Step 2: Main Application \u2013 multiplication table in flutter\">Step 2: Main Application \u2013 multiplication table in flutter<\/a><\/li><li class='ez-toc-page-1 ez-toc-heading-level-3'><a class=\"ez-toc-link ez-toc-heading-4\" href=\"https:\/\/flutterfever.com\/news\/create-an-app-to-print-the-multiplication-table-in-flutter-of-a-given-number\/#Step_3_Creating_the_Multiplication_Table_Screen\" title=\"Step 3: Creating the Multiplication Table Screen\">Step 3: Creating the Multiplication Table Screen<\/a><\/li><li class='ez-toc-page-1 ez-toc-heading-level-3'><a class=\"ez-toc-link ez-toc-heading-5\" href=\"https:\/\/flutterfever.com\/news\/create-an-app-to-print-the-multiplication-table-in-flutter-of-a-given-number\/#Step_4_Understanding_the_Code\" title=\"Step 4: Understanding the Code\">Step 4: Understanding the Code<\/a><\/li><li class='ez-toc-page-1 ez-toc-heading-level-3'><a class=\"ez-toc-link ez-toc-heading-6\" href=\"https:\/\/flutterfever.com\/news\/create-an-app-to-print-the-multiplication-table-in-flutter-of-a-given-number\/#Step_5_Running_the_App\" title=\"Step 5: Running the App\">Step 5: Running the App<\/a><\/li><\/ul><\/li><\/ul><\/nav><\/div>\n<h2 class=\"wp-block-heading\" id=\"multiplication-table-in-flutter-stepwise\"><span class=\"ez-toc-section\" id=\"Multiplication_table_in_flutter_stepwise\"><\/span>Multiplication table in flutter stepwise<span class=\"ez-toc-section-end\"><\/span><\/h2>\n\n\n\n<h3 class=\"wp-block-heading\" id=\"step-1-setting-up-multiplication-table-in-flutter\"><span class=\"ez-toc-section\" id=\"Step_1_Setting_up_multiplication_table_in_flutter\"><\/span>Step 1: Setting up multiplication table in flutter<span class=\"ez-toc-section-end\"><\/span><\/h3>\n\n\n\n<p>First, create a new Flutter project. Open your terminal and run the following command:<\/p>\n\n\n\n<pre class=\"wp-block-code\"><code>flutter create multiplication_table_app\n<\/code><\/pre>\n\n\n\n<p>Navigate into your project directory:<\/p>\n\n\n\n<pre class=\"wp-block-code\"><code>cd multiplication_table_app\n<\/code><\/pre>\n\n\n\n<h3 class=\"wp-block-heading\" id=\"step-2-main-application-multiplication-table-in-flutter\"><span class=\"ez-toc-section\" id=\"Step_2_Main_Application_%E2%80%93_multiplication_table_in_flutter\"><\/span>Step 2: Main Application \u2013 multiplication table in flutter<span class=\"ez-toc-section-end\"><\/span><\/h3>\n\n\n\n<p>Open your project in your preferred code editor and navigate to&nbsp;<code>lib\/main.dart<\/code>. Replace the existing code with the following:<\/p>\n\n\n\n<pre class=\"wp-block-code\"><code>import 'package:flutter\/material.dart';\n\nvoid main() {\n  runApp(MyApp());\n}\n\nclass MyApp extends StatelessWidget {\n  @override\n  Widget build(BuildContext context) {\n    return MaterialApp(\n      title: 'Multiplication Table',\n      home: MultiplicationTableScreen(),\n    );\n  }\n}\n<\/code><\/pre>\n\n\n\n<p>In the above code, we define the&nbsp;<code>MyApp<\/code>&nbsp;widget which is the root of our application. It sets up the&nbsp;<code>MaterialApp<\/code>&nbsp;with a title and the home screen.<\/p>\n\n\n\n<h3 class=\"wp-block-heading\" id=\"step-3-creating-the-multiplication-table-screen\"><span class=\"ez-toc-section\" id=\"Step_3_Creating_the_Multiplication_Table_Screen\"><\/span>Step 3: Creating the Multiplication Table Screen<span class=\"ez-toc-section-end\"><\/span><\/h3>\n\n\n\n<p>Next, we need to create a stateful widget to manage the multiplication table screen. This widget will handle the user input and generate the multiplication table dynamically.<\/p>\n\n\n\n<pre class=\"wp-block-code\"><code>class MultiplicationTableScreen extends StatefulWidget {\n  @override\n  _MultiplicationTableScreenState createState() =&gt; _MultiplicationTableScreenState();\n}\n\nclass _MultiplicationTableScreenState extends State&lt;MultiplicationTableScreen&gt; {\n  final _controller = TextEditingController();\n  int _number = 0;\n  List&lt;String&gt; _table = &#91;];\n\n  void _generateTable() {\n    setState(() {\n      try {\n        _number = int.parse(_controller.text);\n        _table = &#91;]; \/\/ Clear previous table\n        for (int i = 1; i &lt;= 10; i++) {\n          _table.add(\"$_number x $i = ${_number * i}\");\n        }\n      } catch (e) {\n        _table = &#91;\"Invalid Input\"];\n      }\n    });\n  }\n\n  @override\n  Widget build(BuildContext context) {\n    return Scaffold(\n      appBar: AppBar(\n        title: Text('Multiplication Table'),\n      ),\n      body: Padding(\n        padding: const EdgeInsets.all(20.0),\n        child: Column(\n          children: &#91;\n            TextField(\n              controller: _controller,\n              keyboardType: TextInputType.number,\n              decoration: InputDecoration(\n                labelText: 'Enter a number',\n              ),\n            ),\n            SizedBox(height: 20),\n            ElevatedButton(\n              onPressed: _generateTable,\n              child: Text('Generate Table'),\n            ),\n            Expanded(\n              child: ListView.builder(\n                shrinkWrap: true,\n                itemCount: _table.length,\n                itemBuilder: (context, index) {\n                  return ListTile(\n                    title: Text(_table&#91;index]),\n                  );\n                },\n              ),\n            ),\n          ],\n        ),\n      ),\n    );\n  }\n}\n<\/code><\/pre>\n\n\n\n<h3 class=\"wp-block-heading\" id=\"step-4-understanding-the-code\"><span class=\"ez-toc-section\" id=\"Step_4_Understanding_the_Code\"><\/span>Step 4: Understanding the Code<span class=\"ez-toc-section-end\"><\/span><\/h3>\n\n\n\n<ol class=\"wp-block-list\">\n<li><strong>Stateful Widget<\/strong>:\u00a0<code>MultiplicationTableScreen<\/code>\u00a0is a stateful widget because it maintains state (the number and the generated multiplication table).<\/li>\n\n\n\n<li><strong>TextField and Controller<\/strong>: The\u00a0<code>TextField<\/code>\u00a0widget is used to take user input. We use a\u00a0<code>TextEditingController<\/code>\u00a0to retrieve the text entered by the user.<\/li>\n\n\n\n<li><strong>Generate Table Function<\/strong>: The\u00a0<code>_generateTable<\/code>\u00a0function parses the input number and generates the multiplication table. It updates the state using\u00a0<code>setState<\/code>, which re-renders the UI with the new data.<\/li>\n\n\n\n<li><strong>ListView.builder<\/strong>: This\u00a0<a href=\"https:\/\/docs.flutter.dev\/cookbook\/lists\/long-lists\" target=\"_blank\" rel=\"noreferrer noopener\">widget<\/a>\u00a0dynamically creates a scrollable list of items. It uses the\u00a0<code>_table<\/code>\u00a0list to generate each item in the list.<\/li>\n<\/ol>\n\n\n\n<h3 class=\"wp-block-heading\" id=\"step-5-running-the-app\"><span class=\"ez-toc-section\" id=\"Step_5_Running_the_App\"><\/span>Step 5: Running the App<span class=\"ez-toc-section-end\"><\/span><\/h3>\n\n\n\n<p>To see your app in action, run the following command in your terminal:<\/p>\n\n\n\n<pre class=\"wp-block-code\"><code>flutter run\n<\/code><\/pre>\n\n\n\n<p>Enter a number in the text field, click \u201cGenerate Table\u201d, and see the multiplication table below.<\/p>\n\n\n\n<p>Output:<\/p>\n\n\n\n<figure class=\"wp-block-image\"><img decoding=\"async\" src=\"https:\/\/www.appoverride.com\/wp-content\/uploads\/2024\/07\/Screenshot-2024-07-03-at-21.07.41.png\" alt=\"Screenshot 2024 07 03 at 21.07.41\" class=\"wp-image-3099\" title=\"Create an app to print the multiplication table in Flutter of a given number 2\"\/><\/figure>\n\n\n\n<hr class=\"wp-block-separator has-alpha-channel-opacity\"\/>\n\n\n\n<p><strong>Contact Us:<\/strong><\/p>\n\n\n\n<ul class=\"wp-block-list\">\n<li><strong>Email:<\/strong>\u00a0flutterfever@gmail.com<\/li>\n\n\n\n<li><strong>Website:<\/strong>\u00a0<a href=\"https:\/\/flutterfever.com\/\">https:\/\/flutterfever.com\/<\/a><\/li>\n\n\n\n<li><strong>Linkedin<\/strong>:\u00a0<a href=\"https:\/\/www.linkedin.com\/company\/flutter-fever\/\">https:\/\/www.linkedin.com\/company\/flutter-fever\/<\/a><\/li>\n<\/ul>\n\n\n\n<p>Stay connected and follow us for more insights on mobile development and the latest in Flutter technology.<\/p>\n","protected":false},"excerpt":{"rendered":"<p>In this tutorial, we\u2019ll build a multiplication table in flutter app where users can enter a number and see its multiplication table. This app will be a fantastic exercise for beginners to understand state management, text input handling, and dynamic list generation in Flutter. Multiplication table in flutter stepwise Step 1: Setting up multiplication table &#8230; <a title=\"Create an app to print the multiplication table in Flutter of a given number\" class=\"read-more\" href=\"https:\/\/flutterfever.com\/news\/create-an-app-to-print-the-multiplication-table-in-flutter-of-a-given-number\/\" aria-label=\"Read more about Create an app to print the multiplication table in Flutter of a given number\">Read more<\/a><\/p>\n","protected":false},"author":1,"featured_media":78,"comment_status":"closed","ping_status":"closed","sticky":false,"template":"","format":"standard","meta":{"footnotes":""},"categories":[1],"tags":[6,5,13,14],"class_list":["post-82","post","type-post","status-publish","format-standard","has-post-thumbnail","hentry","category-blog","tag-flutter","tag-flutter-app-development","tag-flutter-developer-job","tag-mobile-application-developer-remote-job"],"yoast_head":"<!-- This site is optimized with the Yoast SEO plugin v23.9 - https:\/\/yoast.com\/wordpress\/plugins\/seo\/ -->\n<title>Create an app to print the multiplication table in Flutter of a given number<\/title>\n<meta name=\"robots\" content=\"index, follow, max-snippet:-1, max-image-preview:large, max-video-preview:-1\" \/>\n<link rel=\"canonical\" href=\"https:\/\/flutterfever.com\/news\/create-an-app-to-print-the-multiplication-table-in-flutter-of-a-given-number\/\" \/>\n<meta property=\"og:locale\" content=\"en_US\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"Create an app to print the multiplication table in Flutter of a given number\" \/>\n<meta property=\"og:description\" content=\"In this tutorial, we\u2019ll build a multiplication table in flutter app where users can enter a number and see its multiplication table. This app will be a fantastic exercise for beginners to understand state management, text input handling, and dynamic list generation in Flutter. Multiplication table in flutter stepwise Step 1: Setting up multiplication table ... Read more\" \/>\n<meta property=\"og:url\" content=\"https:\/\/flutterfever.com\/news\/create-an-app-to-print-the-multiplication-table-in-flutter-of-a-given-number\/\" \/>\n<meta property=\"og:site_name\" content=\"Flutter News and Job Updates\" \/>\n<meta property=\"article:published_time\" content=\"2024-07-04T07:52:51+00:00\" \/>\n<meta property=\"article:modified_time\" content=\"2024-07-04T07:52:52+00:00\" \/>\n<meta property=\"og:image\" content=\"https:\/\/flutterfever.com\/news\/wp-content\/uploads\/2024\/07\/image-10.png\" \/>\n\t<meta property=\"og:image:width\" content=\"1256\" \/>\n\t<meta property=\"og:image:height\" content=\"584\" \/>\n\t<meta property=\"og:image:type\" content=\"image\/png\" \/>\n<meta name=\"author\" content=\"Dileep Gupta\" \/>\n<meta name=\"twitter:card\" content=\"summary_large_image\" \/>\n<meta name=\"twitter:label1\" content=\"Written by\" \/>\n\t<meta name=\"twitter:data1\" content=\"Dileep Gupta\" \/>\n\t<meta name=\"twitter:label2\" content=\"Est. reading time\" \/>\n\t<meta name=\"twitter:data2\" content=\"2 minutes\" \/>\n<script type=\"application\/ld+json\" class=\"yoast-schema-graph\">{\"@context\":\"https:\/\/schema.org\",\"@graph\":[{\"@type\":\"WebPage\",\"@id\":\"https:\/\/flutterfever.com\/news\/create-an-app-to-print-the-multiplication-table-in-flutter-of-a-given-number\/\",\"url\":\"https:\/\/flutterfever.com\/news\/create-an-app-to-print-the-multiplication-table-in-flutter-of-a-given-number\/\",\"name\":\"Create an app to print the multiplication table in Flutter of a given number\",\"isPartOf\":{\"@id\":\"https:\/\/flutterfever.com\/news\/#website\"},\"primaryImageOfPage\":{\"@id\":\"https:\/\/flutterfever.com\/news\/create-an-app-to-print-the-multiplication-table-in-flutter-of-a-given-number\/#primaryimage\"},\"image\":{\"@id\":\"https:\/\/flutterfever.com\/news\/create-an-app-to-print-the-multiplication-table-in-flutter-of-a-given-number\/#primaryimage\"},\"thumbnailUrl\":\"https:\/\/flutterfever.com\/news\/wp-content\/uploads\/2024\/07\/image-10.png\",\"datePublished\":\"2024-07-04T07:52:51+00:00\",\"dateModified\":\"2024-07-04T07:52:52+00:00\",\"author\":{\"@id\":\"https:\/\/flutterfever.com\/news\/#\/schema\/person\/ad598819a9e5c65eb967af1266e11a2d\"},\"breadcrumb\":{\"@id\":\"https:\/\/flutterfever.com\/news\/create-an-app-to-print-the-multiplication-table-in-flutter-of-a-given-number\/#breadcrumb\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\/\/flutterfever.com\/news\/create-an-app-to-print-the-multiplication-table-in-flutter-of-a-given-number\/\"]}]},{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\/\/flutterfever.com\/news\/create-an-app-to-print-the-multiplication-table-in-flutter-of-a-given-number\/#primaryimage\",\"url\":\"https:\/\/flutterfever.com\/news\/wp-content\/uploads\/2024\/07\/image-10.png\",\"contentUrl\":\"https:\/\/flutterfever.com\/news\/wp-content\/uploads\/2024\/07\/image-10.png\",\"width\":1256,\"height\":584,\"caption\":\"Understanding Flutter Widgets\"},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\/\/flutterfever.com\/news\/create-an-app-to-print-the-multiplication-table-in-flutter-of-a-given-number\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https:\/\/flutterfever.com\/news\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"Create an app to print the multiplication table in Flutter of a given number\"}]},{\"@type\":\"WebSite\",\"@id\":\"https:\/\/flutterfever.com\/news\/#website\",\"url\":\"https:\/\/flutterfever.com\/news\/\",\"name\":\"Flutter News and Job Updates\",\"description\":\"Flutter News, Hiring, Job, Recruitment, Freelancing and more\",\"potentialAction\":[{\"@type\":\"SearchAction\",\"target\":{\"@type\":\"EntryPoint\",\"urlTemplate\":\"https:\/\/flutterfever.com\/news\/?s={search_term_string}\"},\"query-input\":{\"@type\":\"PropertyValueSpecification\",\"valueRequired\":true,\"valueName\":\"search_term_string\"}}],\"inLanguage\":\"en-US\"},{\"@type\":\"Person\",\"@id\":\"https:\/\/flutterfever.com\/news\/#\/schema\/person\/ad598819a9e5c65eb967af1266e11a2d\",\"name\":\"Dileep Gupta\",\"image\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\/\/flutterfever.com\/news\/#\/schema\/person\/image\/\",\"url\":\"https:\/\/secure.gravatar.com\/avatar\/8650ac6fbcef35c65894bd4e4f8b103d?s=96&d=mm&r=g\",\"contentUrl\":\"https:\/\/secure.gravatar.com\/avatar\/8650ac6fbcef35c65894bd4e4f8b103d?s=96&d=mm&r=g\",\"caption\":\"Dileep Gupta\"},\"sameAs\":[\"https:\/\/flutterfever.com\/news\"]}]}<\/script>\n<!-- \/ Yoast SEO plugin. -->","yoast_head_json":{"title":"Create an app to print the multiplication table in Flutter of a given number","robots":{"index":"index","follow":"follow","max-snippet":"max-snippet:-1","max-image-preview":"max-image-preview:large","max-video-preview":"max-video-preview:-1"},"canonical":"https:\/\/flutterfever.com\/news\/create-an-app-to-print-the-multiplication-table-in-flutter-of-a-given-number\/","og_locale":"en_US","og_type":"article","og_title":"Create an app to print the multiplication table in Flutter of a given number","og_description":"In this tutorial, we\u2019ll build a multiplication table in flutter app where users can enter a number and see its multiplication table. This app will be a fantastic exercise for beginners to understand state management, text input handling, and dynamic list generation in Flutter. Multiplication table in flutter stepwise Step 1: Setting up multiplication table ... Read more","og_url":"https:\/\/flutterfever.com\/news\/create-an-app-to-print-the-multiplication-table-in-flutter-of-a-given-number\/","og_site_name":"Flutter News and Job Updates","article_published_time":"2024-07-04T07:52:51+00:00","article_modified_time":"2024-07-04T07:52:52+00:00","og_image":[{"width":1256,"height":584,"url":"https:\/\/flutterfever.com\/news\/wp-content\/uploads\/2024\/07\/image-10.png","type":"image\/png"}],"author":"Dileep Gupta","twitter_card":"summary_large_image","twitter_misc":{"Written by":"Dileep Gupta","Est. reading time":"2 minutes"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"WebPage","@id":"https:\/\/flutterfever.com\/news\/create-an-app-to-print-the-multiplication-table-in-flutter-of-a-given-number\/","url":"https:\/\/flutterfever.com\/news\/create-an-app-to-print-the-multiplication-table-in-flutter-of-a-given-number\/","name":"Create an app to print the multiplication table in Flutter of a given number","isPartOf":{"@id":"https:\/\/flutterfever.com\/news\/#website"},"primaryImageOfPage":{"@id":"https:\/\/flutterfever.com\/news\/create-an-app-to-print-the-multiplication-table-in-flutter-of-a-given-number\/#primaryimage"},"image":{"@id":"https:\/\/flutterfever.com\/news\/create-an-app-to-print-the-multiplication-table-in-flutter-of-a-given-number\/#primaryimage"},"thumbnailUrl":"https:\/\/flutterfever.com\/news\/wp-content\/uploads\/2024\/07\/image-10.png","datePublished":"2024-07-04T07:52:51+00:00","dateModified":"2024-07-04T07:52:52+00:00","author":{"@id":"https:\/\/flutterfever.com\/news\/#\/schema\/person\/ad598819a9e5c65eb967af1266e11a2d"},"breadcrumb":{"@id":"https:\/\/flutterfever.com\/news\/create-an-app-to-print-the-multiplication-table-in-flutter-of-a-given-number\/#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/flutterfever.com\/news\/create-an-app-to-print-the-multiplication-table-in-flutter-of-a-given-number\/"]}]},{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/flutterfever.com\/news\/create-an-app-to-print-the-multiplication-table-in-flutter-of-a-given-number\/#primaryimage","url":"https:\/\/flutterfever.com\/news\/wp-content\/uploads\/2024\/07\/image-10.png","contentUrl":"https:\/\/flutterfever.com\/news\/wp-content\/uploads\/2024\/07\/image-10.png","width":1256,"height":584,"caption":"Understanding Flutter Widgets"},{"@type":"BreadcrumbList","@id":"https:\/\/flutterfever.com\/news\/create-an-app-to-print-the-multiplication-table-in-flutter-of-a-given-number\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"https:\/\/flutterfever.com\/news\/"},{"@type":"ListItem","position":2,"name":"Create an app to print the multiplication table in Flutter of a given number"}]},{"@type":"WebSite","@id":"https:\/\/flutterfever.com\/news\/#website","url":"https:\/\/flutterfever.com\/news\/","name":"Flutter News and Job Updates","description":"Flutter News, Hiring, Job, Recruitment, Freelancing and more","potentialAction":[{"@type":"SearchAction","target":{"@type":"EntryPoint","urlTemplate":"https:\/\/flutterfever.com\/news\/?s={search_term_string}"},"query-input":{"@type":"PropertyValueSpecification","valueRequired":true,"valueName":"search_term_string"}}],"inLanguage":"en-US"},{"@type":"Person","@id":"https:\/\/flutterfever.com\/news\/#\/schema\/person\/ad598819a9e5c65eb967af1266e11a2d","name":"Dileep Gupta","image":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/flutterfever.com\/news\/#\/schema\/person\/image\/","url":"https:\/\/secure.gravatar.com\/avatar\/8650ac6fbcef35c65894bd4e4f8b103d?s=96&d=mm&r=g","contentUrl":"https:\/\/secure.gravatar.com\/avatar\/8650ac6fbcef35c65894bd4e4f8b103d?s=96&d=mm&r=g","caption":"Dileep Gupta"},"sameAs":["https:\/\/flutterfever.com\/news"]}]}},"_links":{"self":[{"href":"https:\/\/flutterfever.com\/news\/wp-json\/wp\/v2\/posts\/82","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/flutterfever.com\/news\/wp-json\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/flutterfever.com\/news\/wp-json\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/flutterfever.com\/news\/wp-json\/wp\/v2\/users\/1"}],"replies":[{"embeddable":true,"href":"https:\/\/flutterfever.com\/news\/wp-json\/wp\/v2\/comments?post=82"}],"version-history":[{"count":1,"href":"https:\/\/flutterfever.com\/news\/wp-json\/wp\/v2\/posts\/82\/revisions"}],"predecessor-version":[{"id":83,"href":"https:\/\/flutterfever.com\/news\/wp-json\/wp\/v2\/posts\/82\/revisions\/83"}],"wp:featuredmedia":[{"embeddable":true,"href":"https:\/\/flutterfever.com\/news\/wp-json\/wp\/v2\/media\/78"}],"wp:attachment":[{"href":"https:\/\/flutterfever.com\/news\/wp-json\/wp\/v2\/media?parent=82"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/flutterfever.com\/news\/wp-json\/wp\/v2\/categories?post=82"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/flutterfever.com\/news\/wp-json\/wp\/v2\/tags?post=82"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}