{"id":8958,"date":"2024-03-18T12:51:54","date_gmt":"2024-03-18T12:51:54","guid":{"rendered":"https:\/\/shivlab.com\/blog\/\/"},"modified":"2024-05-21T08:32:15","modified_gmt":"2024-05-21T08:32:15","slug":"how-to-create-strikethrough-text-in-flutter","status":"publish","type":"post","link":"http:\/\/167.86.116.248\/shivlab\/blog\/how-to-create-strikethrough-text-in-flutter\/","title":{"rendered":"How to Create Strikethrough Text in Flutter?"},"content":{"rendered":"<p>Do you ever desire a way to mark completed tasks and outdated information visually or even show emphasis in your Flutter app? It&#8217;s simple! Just use the strikethrough effect. It is a simple but very effective text decoration that helps make messages clearer at a glance.<\/p>\n<p>This post discusses the steps to create strikethrough text in Flutter. But, before that, let&#8217;s start with the basics.<\/p>\n<p>Let&#8217;s get started!<\/p>\n<h2>What is strikethrough text in Flutter?<\/h2>\n<hr \/>\n<p><img loading=\"lazy\" decoding=\"async\" class=\"blog_image aligncenter wp-image-8962 size-full\" src=\"http:\/\/167.86.116.248\/shivlab\/wp-content\/uploads\/2024\/03\/What-is-strikethrough-text-in-Flutter.jpg\" alt=\"What-is-strikethrough-text-in-Flutter\" width=\"950\" height=\"564\" srcset=\"http:\/\/167.86.116.248\/shivlab\/wp-content\/uploads\/2024\/03\/What-is-strikethrough-text-in-Flutter.jpg 950w, http:\/\/167.86.116.248\/shivlab\/wp-content\/uploads\/2024\/03\/What-is-strikethrough-text-in-Flutter-300x178.jpg 300w, http:\/\/167.86.116.248\/shivlab\/wp-content\/uploads\/2024\/03\/What-is-strikethrough-text-in-Flutter-768x456.jpg 768w\" sizes=\"auto, (max-width: 950px) 100vw, 950px\" \/><\/p>\n<p>Flutter strikethrough effect is a kind of appearance made on text. It\u2019s an effect whereby a straight line runs horizontal through the middle of characters, commonly indicating that the text has been deleted or is no longer relevant. This style of displaying changes, updates, and the deleting out of items is often employed in apps so that users can be provided with some visual indications about the status and history of what they see on their screens.<\/p>\n<p>Flutter has many different ways of implementing strikethrough texts. This can be done using built-in widgets Flutter provides or applying custom styling options. Developers who use properties like decoration can have strikethrough effects on Text widgets to change how the text looks and acts to suit their design pattern and application needs.<\/p>\n<h3>Why use strikethrough text in Flutter?<\/h3>\n<hr \/>\n<p><img loading=\"lazy\" decoding=\"async\" class=\"blog_image aligncenter wp-image-8963 size-full\" src=\"http:\/\/167.86.116.248\/shivlab\/wp-content\/uploads\/2024\/03\/Why-use-strikethrough-text-in-Flutter.jpg\" alt=\"Why-use-strikethrough-text-in-Flutter\" width=\"950\" height=\"564\" srcset=\"http:\/\/167.86.116.248\/shivlab\/wp-content\/uploads\/2024\/03\/Why-use-strikethrough-text-in-Flutter.jpg 950w, http:\/\/167.86.116.248\/shivlab\/wp-content\/uploads\/2024\/03\/Why-use-strikethrough-text-in-Flutter-300x178.jpg 300w, http:\/\/167.86.116.248\/shivlab\/wp-content\/uploads\/2024\/03\/Why-use-strikethrough-text-in-Flutter-768x456.jpg 768w\" sizes=\"auto, (max-width: 950px) 100vw, 950px\" \/><\/p>\n<p><span style=\"color: #ff8625;\">1) <\/span><strong>Visual Clarity:<\/strong> Starting with the struck-out words, this means that some content is not valid or relevant hence promotes more understanding and clearer views in general.<\/p>\n<p><span style=\"color: #ff8625;\">2) <\/span><strong>Status Indication:<\/strong> It helps users know what has been done, rendered irrelevant or deleted making it easier for them to trace modifications carried out on the system.<\/p>\n<p><span style=\"color: #ff8625;\">3) <\/span><strong>Highlighting Changes:<\/strong> Crossed-out portions make it easy to note changes in a document such as price reductions in e-commerce applications or revisions of files.<\/p>\n<p><span style=\"color: #ff8625;\">4) <\/span><strong>Enhanced User Experience:<\/strong> This enhances user experience by using strikethrough which employs visual cues that allow people to quickly understand what they are seeing and decide accordingly.<\/p>\n<p><strong>Consistency:<\/strong> This maintains the application\u2019s conformity with familiar interface conventions for a more intuitive, user-friendly app.<\/p>\n<h3>Methods to create strikethrough text in Flutter<\/h3>\n<hr \/>\n<h4><img loading=\"lazy\" decoding=\"async\" class=\"blog_image aligncenter wp-image-8961 size-full\" src=\"http:\/\/167.86.116.248\/shivlab\/wp-content\/uploads\/2024\/03\/Methods-to-create-strikethrough-text-in-Flutter.jpg\" alt=\"Methods-to-create-strikethrough-text-in-Flutter\" width=\"950\" height=\"564\" srcset=\"http:\/\/167.86.116.248\/shivlab\/wp-content\/uploads\/2024\/03\/Methods-to-create-strikethrough-text-in-Flutter.jpg 950w, http:\/\/167.86.116.248\/shivlab\/wp-content\/uploads\/2024\/03\/Methods-to-create-strikethrough-text-in-Flutter-300x178.jpg 300w, http:\/\/167.86.116.248\/shivlab\/wp-content\/uploads\/2024\/03\/Methods-to-create-strikethrough-text-in-Flutter-768x456.jpg 768w\" sizes=\"auto, (max-width: 950px) 100vw, 950px\" \/><\/h4>\n<h4><span style=\"color: #ff8625;\"># <\/span>Using Text Widget<\/h4>\n<p>A Text widget is the easiest way to display text in Flutter. Through the style argument, one may pass an argument called style, whose type is TextStyle, to this widget. The TextStyle class itself can be used to define the style of the text, such as size, font, and decoration. To add a strikethrough effect, kindly use a TextStyle with its decoration field set as TextDecoration.lineThrough.<\/p>\n<h4><span style=\"color: #ff8625;\"># <\/span>Using RichText &amp; TextSpan Widgets<\/h4>\n<p>If you set a certain mark on the Text widget, as demonstrated above, it will be applied to all letters. In most instances, only some parts of the text are struck through. A RichText widget was invented for this purpose. Through the use of the RichText widget, several TextSpan widgets could be defined, each with different styles. It is possible to define the TextStyle of a TextSpan just like on a Text widget by passing it as a style argument.<\/p>\n<p><strong>Also Read:-<\/strong> <a href=\"http:\/\/167.86.116.248\/shivlab\/blog\/how-recyclerview-works-internally-in-android\/\">What is The Internal Working of RecyclerView?<\/a><\/p>\n<h4><span style=\"color: #ff8625;\"># <\/span>Combine with Other Decorations<\/h4>\n<p>You may add extra adornments to the text in addition to the strikethrough, such as texts with both underscore and strikethrough. In Flutter, multiple decorations can be combined using the TextDecoration.combine method, which receives a list of TextDecoration values.<\/p>\n<h3><strong>Frequently Asked Questions<\/strong><\/h3>\n<hr \/>\n<p><strong><span style=\"color: #ff8625;\"># <\/span>Can the strikethrough text style be altered in Flutter?<\/strong><\/p>\n<p>Of course, the style of the strikethrough text can be changed by utilizing attributes like color, width, and design that are found in TextDecorationStyle, TextDecorationColor and TextDecorationThickness.<\/p>\n<p><strong><span style=\"color: #ff8625;\"># <\/span>Is it possible to have other styles together with strike through in Flutter?<\/strong><\/p>\n<p>Yes, you can have a combination of other styles such as bold or italic with the strike through effect on it using RichText as a wrapper for the Text widget and applying different text styles on its parts.<\/p>\n<p><strong><span style=\"color: #ff8625;\"># <\/span>Is it possible to animate strikethrough text in Flutter?<\/strong><\/p>\n<p>Yes, strikethrough text animations can be made using an animation framework in Flutter. Dynamic through-line effects may be produced by animating properties such as color, thickness, or position with widgets like AnimatedContainer or AnimatedDefaultTextStyle.<\/p>\n<p><strong><span style=\"color: #ff8625;\"># <\/span>Does Flutter allow for conditionally rendering strikethrough text?<\/strong><\/p>\n<p>Yes, conditional rendering is supported in Flutter by using widgets like Visibility or Opacity. Based on your application&#8217;s logic, you can apply a line strike by making the Text widget visible or changing its opacity.<\/p>\n<h4>Bottom Line<\/h4>\n<hr \/>\n<p>When designing a TextStyle for a Flutter text widget that uses TextDecoration.lineThrough, one can include a strikethrough line in their design scheme. Any other widget that takes TextStyle as an argument can use it. To mix this decoration with others, apply the TextDecoration.combine method.<\/p>\n","protected":false},"excerpt":{"rendered":"<p>Do you ever desire a way to mark completed tasks and outdated information visually or even show emphasis in your Flutter app? It&#8217;s simple! Just use the strikethrough effect. It [&hellip;]<\/p>\n","protected":false},"author":2,"featured_media":8960,"comment_status":"closed","ping_status":"closed","sticky":false,"template":"","format":"standard","meta":{"footnotes":""},"categories":[8],"tags":[],"class_list":["post-8958","post","type-post","status-publish","format-standard","has-post-thumbnail","hentry","category-mobile-app-deveploment"],"acf":[],"yoast_head":"<!-- This site is optimized with the Yoast SEO plugin v24.3 - https:\/\/yoast.com\/wordpress\/plugins\/seo\/ -->\n<title>How to Create Strikethrough Text in Flutter?<\/title>\n<meta name=\"description\" content=\"A Definitive Guide to the Flutter Text Widget - Strikethrough effects can be used effectively in your apps by combining them with your textual content.\" \/>\n<meta name=\"robots\" content=\"index, follow, max-snippet:-1, max-image-preview:large, max-video-preview:-1\" \/>\n<link rel=\"canonical\" href=\"http:\/\/167.86.116.248\/shivlab\/blog\/how-to-create-strikethrough-text-in-flutter\/\" \/>\n<meta property=\"og:locale\" content=\"en_US\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"How to Create Strikethrough Text in Flutter?\" \/>\n<meta property=\"og:description\" content=\"A Definitive Guide to the Flutter Text Widget - Strikethrough effects can be used effectively in your apps by combining them with your textual content.\" \/>\n<meta property=\"og:url\" content=\"http:\/\/167.86.116.248\/shivlab\/blog\/how-to-create-strikethrough-text-in-flutter\/\" \/>\n<meta property=\"og:site_name\" content=\"Shiv Technolabs Pvt. Ltd.\" \/>\n<meta property=\"article:publisher\" content=\"https:\/\/www.facebook.com\/ShivTechnolabs\/\" \/>\n<meta property=\"article:author\" content=\"https:\/\/www.facebook.com\/kishan.2204\" \/>\n<meta property=\"article:published_time\" content=\"2024-03-18T12:51:54+00:00\" \/>\n<meta property=\"article:modified_time\" content=\"2024-05-21T08:32:15+00:00\" \/>\n<meta property=\"og:image\" content=\"http:\/\/167.86.116.248\/shivlab\/wp-content\/uploads\/2024\/03\/Feature-Image-1-1.png\" \/>\n\t<meta property=\"og:image:width\" content=\"1140\" \/>\n\t<meta property=\"og:image:height\" content=\"762\" \/>\n\t<meta property=\"og:image:type\" content=\"image\/png\" \/>\n<meta name=\"author\" content=\"Kishan Mehta\" \/>\n<meta name=\"twitter:card\" content=\"summary_large_image\" \/>\n<meta name=\"twitter:creator\" content=\"@KishanRMehta\" \/>\n<meta name=\"twitter:site\" content=\"@Shiv_Technolabs\" \/>\n<meta name=\"twitter:label1\" content=\"Written by\" \/>\n\t<meta name=\"twitter:data1\" content=\"Kishan Mehta\" \/>\n\t<meta name=\"twitter:label2\" content=\"Est. reading time\" \/>\n\t<meta name=\"twitter:data2\" content=\"4 minutes\" \/>\n<script type=\"application\/ld+json\" class=\"yoast-schema-graph\">{\"@context\":\"https:\/\/schema.org\",\"@graph\":[{\"@type\":\"Article\",\"@id\":\"http:\/\/167.86.116.248\/shivlab\/blog\/how-to-create-strikethrough-text-in-flutter\/#article\",\"isPartOf\":{\"@id\":\"http:\/\/167.86.116.248\/shivlab\/blog\/how-to-create-strikethrough-text-in-flutter\/\"},\"author\":{\"name\":\"Kishan Mehta\",\"@id\":\"http:\/\/167.86.116.248\/shivlab\/#\/schema\/person\/881e4ba4247b26ad41c7f8284086ab5f\"},\"headline\":\"How to Create Strikethrough Text in Flutter?\",\"datePublished\":\"2024-03-18T12:51:54+00:00\",\"dateModified\":\"2024-05-21T08:32:15+00:00\",\"mainEntityOfPage\":{\"@id\":\"http:\/\/167.86.116.248\/shivlab\/blog\/how-to-create-strikethrough-text-in-flutter\/\"},\"wordCount\":778,\"publisher\":{\"@id\":\"http:\/\/167.86.116.248\/shivlab\/#organization\"},\"image\":{\"@id\":\"http:\/\/167.86.116.248\/shivlab\/blog\/how-to-create-strikethrough-text-in-flutter\/#primaryimage\"},\"thumbnailUrl\":\"http:\/\/167.86.116.248\/shivlab\/wp-content\/uploads\/2024\/03\/Feature-Image-1-1.png\",\"articleSection\":[\"Mobile App Deveploment\"],\"inLanguage\":\"en-US\"},{\"@type\":\"WebPage\",\"@id\":\"http:\/\/167.86.116.248\/shivlab\/blog\/how-to-create-strikethrough-text-in-flutter\/\",\"url\":\"http:\/\/167.86.116.248\/shivlab\/blog\/how-to-create-strikethrough-text-in-flutter\/\",\"name\":\"How to Create Strikethrough Text in Flutter?\",\"isPartOf\":{\"@id\":\"http:\/\/167.86.116.248\/shivlab\/#website\"},\"primaryImageOfPage\":{\"@id\":\"http:\/\/167.86.116.248\/shivlab\/blog\/how-to-create-strikethrough-text-in-flutter\/#primaryimage\"},\"image\":{\"@id\":\"http:\/\/167.86.116.248\/shivlab\/blog\/how-to-create-strikethrough-text-in-flutter\/#primaryimage\"},\"thumbnailUrl\":\"http:\/\/167.86.116.248\/shivlab\/wp-content\/uploads\/2024\/03\/Feature-Image-1-1.png\",\"datePublished\":\"2024-03-18T12:51:54+00:00\",\"dateModified\":\"2024-05-21T08:32:15+00:00\",\"description\":\"A Definitive Guide to the Flutter Text Widget - Strikethrough effects can be used effectively in your apps by combining them with your textual content.\",\"breadcrumb\":{\"@id\":\"http:\/\/167.86.116.248\/shivlab\/blog\/how-to-create-strikethrough-text-in-flutter\/#breadcrumb\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"http:\/\/167.86.116.248\/shivlab\/blog\/how-to-create-strikethrough-text-in-flutter\/\"]}]},{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"http:\/\/167.86.116.248\/shivlab\/blog\/how-to-create-strikethrough-text-in-flutter\/#primaryimage\",\"url\":\"http:\/\/167.86.116.248\/shivlab\/wp-content\/uploads\/2024\/03\/Feature-Image-1-1.png\",\"contentUrl\":\"http:\/\/167.86.116.248\/shivlab\/wp-content\/uploads\/2024\/03\/Feature-Image-1-1.png\",\"width\":1140,\"height\":762,\"caption\":\"How to create strikethrough text in Flutter?\"},{\"@type\":\"BreadcrumbList\",\"@id\":\"http:\/\/167.86.116.248\/shivlab\/blog\/how-to-create-strikethrough-text-in-flutter\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Home\",\"item\":\"http:\/\/167.86.116.248\/shivlab\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"How to Create Strikethrough Text in Flutter?\"}]},{\"@type\":\"WebSite\",\"@id\":\"http:\/\/167.86.116.248\/shivlab\/#website\",\"url\":\"http:\/\/167.86.116.248\/shivlab\/\",\"name\":\"Shiv Technolabs Pvt. Ltd.\",\"description\":\"\",\"publisher\":{\"@id\":\"http:\/\/167.86.116.248\/shivlab\/#organization\"},\"potentialAction\":[{\"@type\":\"SearchAction\",\"target\":{\"@type\":\"EntryPoint\",\"urlTemplate\":\"http:\/\/167.86.116.248\/shivlab\/?s={search_term_string}\"},\"query-input\":{\"@type\":\"PropertyValueSpecification\",\"valueRequired\":true,\"valueName\":\"search_term_string\"}}],\"inLanguage\":\"en-US\"},{\"@type\":\"Organization\",\"@id\":\"http:\/\/167.86.116.248\/shivlab\/#organization\",\"name\":\"Shiv Technolabs Pvt. Ltd\",\"url\":\"http:\/\/167.86.116.248\/shivlab\/\",\"logo\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"http:\/\/167.86.116.248\/shivlab\/#\/schema\/logo\/image\/\",\"url\":\"http:\/\/167.86.116.248\/shivlab\/wp-content\/uploads\/2022\/11\/stl-logo1.png\",\"contentUrl\":\"http:\/\/167.86.116.248\/shivlab\/wp-content\/uploads\/2022\/11\/stl-logo1.png\",\"width\":1280,\"height\":371,\"caption\":\"Shiv Technolabs Pvt. Ltd\"},\"image\":{\"@id\":\"http:\/\/167.86.116.248\/shivlab\/#\/schema\/logo\/image\/\"},\"sameAs\":[\"https:\/\/www.facebook.com\/ShivTechnolabs\/\",\"https:\/\/x.com\/Shiv_Technolabs\",\"https:\/\/www.linkedin.com\/company\/shivtechnolabs\/\",\"https:\/\/www.instagram.com\/shivtechnolabs\/\",\"https:\/\/in.pinterest.com\/ShivTechnolabs\/\"]},{\"@type\":\"Person\",\"@id\":\"http:\/\/167.86.116.248\/shivlab\/#\/schema\/person\/881e4ba4247b26ad41c7f8284086ab5f\",\"name\":\"Kishan Mehta\",\"image\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"http:\/\/167.86.116.248\/shivlab\/#\/schema\/person\/image\/\",\"url\":\"http:\/\/167.86.116.248\/shivlab\/wp-content\/uploads\/2023\/07\/kishan-mehta-150x150.png\",\"contentUrl\":\"http:\/\/167.86.116.248\/shivlab\/wp-content\/uploads\/2023\/07\/kishan-mehta-150x150.png\",\"caption\":\"Kishan Mehta\"},\"description\":\"I am a dynamic and visionary Managing Director of Shiv Technolabs, a leading IT company at the forefront of innovation. With over a decade of hands-on experience in mobile app development, web development, and eCommerce solutions, I am a qualified professional. My expertise goes beyond technical proficiency, containing a keen understanding of evolving market dynamics. I have successfully delivered exceptional IT solutions, catering to the unique needs of entrepreneurs and businesses across diverse industries.\",\"sameAs\":[\"http:\/\/167.86.116.248\/shivlab\/\",\"https:\/\/www.facebook.com\/kishan.2204\",\"https:\/\/www.instagram.com\/kishanmehta2204\/\",\"https:\/\/www.linkedin.com\/in\/kishan-mehta\/\",\"https:\/\/x.com\/KishanRMehta\",\"https:\/\/www.youtube.com\/@ShivTechnolabs\"],\"url\":\"http:\/\/167.86.116.248\/shivlab\/author\/kishan_mehta\/\"}]}<\/script>\n<!-- \/ Yoast SEO plugin. -->","yoast_head_json":{"title":"How to Create Strikethrough Text in Flutter?","description":"A Definitive Guide to the Flutter Text Widget - Strikethrough effects can be used effectively in your apps by combining them with your textual content.","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":"http:\/\/167.86.116.248\/shivlab\/blog\/how-to-create-strikethrough-text-in-flutter\/","og_locale":"en_US","og_type":"article","og_title":"How to Create Strikethrough Text in Flutter?","og_description":"A Definitive Guide to the Flutter Text Widget - Strikethrough effects can be used effectively in your apps by combining them with your textual content.","og_url":"http:\/\/167.86.116.248\/shivlab\/blog\/how-to-create-strikethrough-text-in-flutter\/","og_site_name":"Shiv Technolabs Pvt. Ltd.","article_publisher":"https:\/\/www.facebook.com\/ShivTechnolabs\/","article_author":"https:\/\/www.facebook.com\/kishan.2204","article_published_time":"2024-03-18T12:51:54+00:00","article_modified_time":"2024-05-21T08:32:15+00:00","og_image":[{"width":1140,"height":762,"url":"http:\/\/167.86.116.248\/shivlab\/wp-content\/uploads\/2024\/03\/Feature-Image-1-1.png","type":"image\/png"}],"author":"Kishan Mehta","twitter_card":"summary_large_image","twitter_creator":"@KishanRMehta","twitter_site":"@Shiv_Technolabs","twitter_misc":{"Written by":"Kishan Mehta","Est. reading time":"4 minutes"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"Article","@id":"http:\/\/167.86.116.248\/shivlab\/blog\/how-to-create-strikethrough-text-in-flutter\/#article","isPartOf":{"@id":"http:\/\/167.86.116.248\/shivlab\/blog\/how-to-create-strikethrough-text-in-flutter\/"},"author":{"name":"Kishan Mehta","@id":"http:\/\/167.86.116.248\/shivlab\/#\/schema\/person\/881e4ba4247b26ad41c7f8284086ab5f"},"headline":"How to Create Strikethrough Text in Flutter?","datePublished":"2024-03-18T12:51:54+00:00","dateModified":"2024-05-21T08:32:15+00:00","mainEntityOfPage":{"@id":"http:\/\/167.86.116.248\/shivlab\/blog\/how-to-create-strikethrough-text-in-flutter\/"},"wordCount":778,"publisher":{"@id":"http:\/\/167.86.116.248\/shivlab\/#organization"},"image":{"@id":"http:\/\/167.86.116.248\/shivlab\/blog\/how-to-create-strikethrough-text-in-flutter\/#primaryimage"},"thumbnailUrl":"http:\/\/167.86.116.248\/shivlab\/wp-content\/uploads\/2024\/03\/Feature-Image-1-1.png","articleSection":["Mobile App Deveploment"],"inLanguage":"en-US"},{"@type":"WebPage","@id":"http:\/\/167.86.116.248\/shivlab\/blog\/how-to-create-strikethrough-text-in-flutter\/","url":"http:\/\/167.86.116.248\/shivlab\/blog\/how-to-create-strikethrough-text-in-flutter\/","name":"How to Create Strikethrough Text in Flutter?","isPartOf":{"@id":"http:\/\/167.86.116.248\/shivlab\/#website"},"primaryImageOfPage":{"@id":"http:\/\/167.86.116.248\/shivlab\/blog\/how-to-create-strikethrough-text-in-flutter\/#primaryimage"},"image":{"@id":"http:\/\/167.86.116.248\/shivlab\/blog\/how-to-create-strikethrough-text-in-flutter\/#primaryimage"},"thumbnailUrl":"http:\/\/167.86.116.248\/shivlab\/wp-content\/uploads\/2024\/03\/Feature-Image-1-1.png","datePublished":"2024-03-18T12:51:54+00:00","dateModified":"2024-05-21T08:32:15+00:00","description":"A Definitive Guide to the Flutter Text Widget - Strikethrough effects can be used effectively in your apps by combining them with your textual content.","breadcrumb":{"@id":"http:\/\/167.86.116.248\/shivlab\/blog\/how-to-create-strikethrough-text-in-flutter\/#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["http:\/\/167.86.116.248\/shivlab\/blog\/how-to-create-strikethrough-text-in-flutter\/"]}]},{"@type":"ImageObject","inLanguage":"en-US","@id":"http:\/\/167.86.116.248\/shivlab\/blog\/how-to-create-strikethrough-text-in-flutter\/#primaryimage","url":"http:\/\/167.86.116.248\/shivlab\/wp-content\/uploads\/2024\/03\/Feature-Image-1-1.png","contentUrl":"http:\/\/167.86.116.248\/shivlab\/wp-content\/uploads\/2024\/03\/Feature-Image-1-1.png","width":1140,"height":762,"caption":"How to create strikethrough text in Flutter?"},{"@type":"BreadcrumbList","@id":"http:\/\/167.86.116.248\/shivlab\/blog\/how-to-create-strikethrough-text-in-flutter\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"http:\/\/167.86.116.248\/shivlab\/"},{"@type":"ListItem","position":2,"name":"How to Create Strikethrough Text in Flutter?"}]},{"@type":"WebSite","@id":"http:\/\/167.86.116.248\/shivlab\/#website","url":"http:\/\/167.86.116.248\/shivlab\/","name":"Shiv Technolabs Pvt. Ltd.","description":"","publisher":{"@id":"http:\/\/167.86.116.248\/shivlab\/#organization"},"potentialAction":[{"@type":"SearchAction","target":{"@type":"EntryPoint","urlTemplate":"http:\/\/167.86.116.248\/shivlab\/?s={search_term_string}"},"query-input":{"@type":"PropertyValueSpecification","valueRequired":true,"valueName":"search_term_string"}}],"inLanguage":"en-US"},{"@type":"Organization","@id":"http:\/\/167.86.116.248\/shivlab\/#organization","name":"Shiv Technolabs Pvt. Ltd","url":"http:\/\/167.86.116.248\/shivlab\/","logo":{"@type":"ImageObject","inLanguage":"en-US","@id":"http:\/\/167.86.116.248\/shivlab\/#\/schema\/logo\/image\/","url":"http:\/\/167.86.116.248\/shivlab\/wp-content\/uploads\/2022\/11\/stl-logo1.png","contentUrl":"http:\/\/167.86.116.248\/shivlab\/wp-content\/uploads\/2022\/11\/stl-logo1.png","width":1280,"height":371,"caption":"Shiv Technolabs Pvt. Ltd"},"image":{"@id":"http:\/\/167.86.116.248\/shivlab\/#\/schema\/logo\/image\/"},"sameAs":["https:\/\/www.facebook.com\/ShivTechnolabs\/","https:\/\/x.com\/Shiv_Technolabs","https:\/\/www.linkedin.com\/company\/shivtechnolabs\/","https:\/\/www.instagram.com\/shivtechnolabs\/","https:\/\/in.pinterest.com\/ShivTechnolabs\/"]},{"@type":"Person","@id":"http:\/\/167.86.116.248\/shivlab\/#\/schema\/person\/881e4ba4247b26ad41c7f8284086ab5f","name":"Kishan Mehta","image":{"@type":"ImageObject","inLanguage":"en-US","@id":"http:\/\/167.86.116.248\/shivlab\/#\/schema\/person\/image\/","url":"http:\/\/167.86.116.248\/shivlab\/wp-content\/uploads\/2023\/07\/kishan-mehta-150x150.png","contentUrl":"http:\/\/167.86.116.248\/shivlab\/wp-content\/uploads\/2023\/07\/kishan-mehta-150x150.png","caption":"Kishan Mehta"},"description":"I am a dynamic and visionary Managing Director of Shiv Technolabs, a leading IT company at the forefront of innovation. With over a decade of hands-on experience in mobile app development, web development, and eCommerce solutions, I am a qualified professional. My expertise goes beyond technical proficiency, containing a keen understanding of evolving market dynamics. I have successfully delivered exceptional IT solutions, catering to the unique needs of entrepreneurs and businesses across diverse industries.","sameAs":["http:\/\/167.86.116.248\/shivlab\/","https:\/\/www.facebook.com\/kishan.2204","https:\/\/www.instagram.com\/kishanmehta2204\/","https:\/\/www.linkedin.com\/in\/kishan-mehta\/","https:\/\/x.com\/KishanRMehta","https:\/\/www.youtube.com\/@ShivTechnolabs"],"url":"http:\/\/167.86.116.248\/shivlab\/author\/kishan_mehta\/"}]}},"jetpack_featured_media_url":"http:\/\/167.86.116.248\/shivlab\/wp-content\/uploads\/2024\/03\/Feature-Image-1-1.png","_links":{"self":[{"href":"http:\/\/167.86.116.248\/shivlab\/wp-json\/wp\/v2\/posts\/8958","targetHints":{"allow":["GET"]}}],"collection":[{"href":"http:\/\/167.86.116.248\/shivlab\/wp-json\/wp\/v2\/posts"}],"about":[{"href":"http:\/\/167.86.116.248\/shivlab\/wp-json\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"http:\/\/167.86.116.248\/shivlab\/wp-json\/wp\/v2\/users\/2"}],"replies":[{"embeddable":true,"href":"http:\/\/167.86.116.248\/shivlab\/wp-json\/wp\/v2\/comments?post=8958"}],"version-history":[{"count":6,"href":"http:\/\/167.86.116.248\/shivlab\/wp-json\/wp\/v2\/posts\/8958\/revisions"}],"predecessor-version":[{"id":9669,"href":"http:\/\/167.86.116.248\/shivlab\/wp-json\/wp\/v2\/posts\/8958\/revisions\/9669"}],"wp:featuredmedia":[{"embeddable":true,"href":"http:\/\/167.86.116.248\/shivlab\/wp-json\/wp\/v2\/media\/8960"}],"wp:attachment":[{"href":"http:\/\/167.86.116.248\/shivlab\/wp-json\/wp\/v2\/media?parent=8958"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"http:\/\/167.86.116.248\/shivlab\/wp-json\/wp\/v2\/categories?post=8958"},{"taxonomy":"post_tag","embeddable":true,"href":"http:\/\/167.86.116.248\/shivlab\/wp-json\/wp\/v2\/tags?post=8958"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}