I got Problem with datepicker Flutter. can anyone help me? :) - flutter

I selected date 1 - 9 its ok, but I selected date 11-30 i got error like this,
error in my debug console like this.
img 1
img 2
img 3

Related

list value shorted in Flutter

I put some urls inside of the list but it shows only "..., " for every items more than 5. the message is this:
I/flutter ( 8408): [https://firebasestorage.googleapis.com/v0/b/bagom-4caee.appspot.com/o/princess.jpg?alt=media&token=355b8b56-1d40-4878-993b-6a80719caf7e, https://firebasestorage.googleapis.com/v0/b/bagom-4caee.appspot.com/o/hensel.jpg?alt=media&token=1f4db537-853d-4c51-96a5-c76c05cd55ae, ..., https://firebasestorage.googleapis.com/v0/b/bagom-4caee.appspot.com/o/jungle.jpg?alt=media&token=a3bd7483-df7e-4cd1-81aa-1992d3596519, https://firebasestorage.googleapis.com/v0/b/bagom-4caee.appspot.com/o/teleport.jpg?alt=media&token=de7fc28b-1652-4d78-ad50-da5d80fef3fb, https://firebasestorage.googleapis.com/v0/b/bagom-4caee.appspot.com/o/island.jpg?alt=media&token=0f0532ec-801b-4ff0-99a5-b0f6b523c259]
I have 7 items in the list, but it only shows 5 and the other 2 are "...,". the other one just shows "...," instead of the actual URL. I think this is why GridView inside the FutureBuilder is causing the problem because of the index.
How can I fix the problem? Thank you for your help in advance!

Vuetify open datepicker nr 2 on datepicker nr 1's value

I'm having two datepickers from vuetify. I want them to be synked so if i choose for example 1 december 2020 in the first picker, I want the second picker to open on december, and not today.
Someone who has done the same thing?
I've searched through vuetifys documentation for datepickers and tried props like 'picker-date' but doesnt work.
Assign the same v-model to both it they do the same job.

crystal report - Subtract result for each item

On Crystal Report, I want to show
My_Qty, which is {Table.1st_Qty}-{Table.2nd_qty}, for each item.
My desired outcome is
Item 1 5 0 5(My_Qty_1)
Item 2 6 0 6(My_Qty_2)
But my current CR shows
Item 1 5 0 11
Item 2 6 0 11
Is there anyway that I can adjust {Table.1st_Qty}-{Table.2nd_qty} to print out what I want?
I have tried 'Running Total Fields' but no luck. I've been googling around but can't find an answer for my case.
Thank you so much in advance!
use whileprintingrecords:
It will do sum while reading data from start to end.

Swift - pickerView components' separator

I am currently working on 3 components(columns) picker in my app.
I want to put border line between 0 - 1 components and 1 - 2 components. It seems fairly fundamental thing but I cannot find a way to do so.
Is there anyone who knows how to make the lines?
Thank you
Try this code
picker.layer.borderColor = UIColor.whiteColor().CGColor
picker.layer.borderWidth = 1
swift-formatting-a-uipickerview

select data from combobox and show the id in label c#

I have a combo box with nationality Text I want to show the selected value id of the nationality in the label.text
I did it this way
lblNathonality.text=comboBox1.SelectedItem.ToString();
could someone tell me what is wrong here ?????!!!!
I'm lost it did not work and I do not know how to fix this problem could someone write the code in Linq please help I can't solve it !!!!!!!!!
Try SelectedValue instead of SelectedItem.
lblNathonality.text= Convert.ToString(comboBox1.SelectedValue);