<pre><code>ListView( scrollDirection: Axis.vertical, shrinkWrap: true, children: [ Paddi...
I want to create a custom text field in flutter like shown in the picture. Outlined TextField border with label and icon in the middle of the border line. Is there any...
<pre><code>class AddTaskScreen extends StatelessWidget { const AddTaskScreen({Key? key}) : super(key: key); @override Widget build(BuildContext context) { Stri...
I've started developing in Flutter with tables, but I met some problems with tables. I use DataTable to represent data in a table. There is a problem that i fa...
<a href="https://m3.material.io/styles/color/the-color-system/custom-colors" rel="nofollow noreferrer">https://m3.material.io/styles/color/the-color-system/custom-colo...
Here I have attached my code which I have created a listview.builder to show 4 elevated button in a container with axis.horizontal. So, when I was clicking the contain...
I want to show bold icon in my app but I don't want to use material icon because when I tap on it it show splash effect and I don't want that so is there any way to ad...
recently i develop an application using flutter and sqflite. for showing data as tabular form i use from DataTable widget but a problem that i face, when i use DataTab...
I'm trying to build a custom <a href="https://api.flutter.dev/flutter/material/ElevatedButton-class.html" rel="nofollow noreferrer">Elevated Button</a> component : <em...
I've created a separate page with a <code>StatefulWidget</code> inside my Flutter app, and it has a <code>Text</code> widget inside of it. However, when testing...
I have a normal <code>MaterialApp</code> Widget in my <code>flutter</code> app. And I want to add more than 1 <code>theme</code> parameter to it... Like so:-</p...
I was trying to make a list of chips which user can reorder by doing drag and drop gesture, Here is sample code which you can execute to see the issue, As being told,...
i have an List item keeping bool values like that:<br /> <code>List<bool> isSelectedDiscountValue = [false, false];</code> <pre><code> isSelectedDiscountValu...
I have the next code: <pre><code>class _ReadingBookPage extends State<ReadingBookPage> { double _sizeFont = 14; ... @override Widge...
How can i limit time picker in material UI use flutter ? i will limit the time from 8.00 to 16.00 here is my code <pre class="lang-dart prettyprint-o...