skip to Main Content

How should I use space so it works on my code in row. I'm using flutter between

import 'package:flutter/material.dart'; class TrackerWidget extends StatelessWidget { const TrackerWidget({ super.key, required this.bgIcon, required this.title, required this.time, required this.size, this.isNotificationEnabled = false, this.isDone = false, required this.timeEnum, }); final String bgIcon; final String title; final String time; final double size; final…

VIEW QUESTION
Back To Top
Search