skip to Main Content

flutter code to divide the vertical space of the screen in 3 different equal parts with different colors

i want to divide my screen vertically in three equal parts with three diffrent color and i am getting only white screen in output. import 'package:flutter/material.dart'; void main() { runApp(const DivideVertically3EqualParts()); } class DivideVertically3EqualParts extends StatefulWidget { const DivideVertically3EqualParts({super.key}); @override…

VIEW QUESTION

How to stick two arrays into one with filtration in flutter?

I have two arrays from api: data['list'] and dataStates['list'] data['list'] = [ {externalSessionId: 49b84a9d-984c-4086-bd9b-19418a4c01ad, score: 43, iapf: 13, iaf: 10.124789237976074, startTime: 2022-12-20T08:36:15.719Z, endTime: 2022-12-20T08:40:55.509Z}, {externalSessionId: 98b6b7dd-76a7-4b5a-abd8-61ecd1970a49, score: 50, iapf: 12, iaf: 11.1, startTime: 2022-12-20T09:00:57.244Z, endTime: 2022-12-20T09:10:57.244Z}, {externalSessionId: 98b6b7dd-76a7-4b5a-abd8-61ecd1970a45, score: 50,…

VIEW QUESTION
Back To Top
Search