skip to Main Content

How to loop somepart of function in flutter?

I want to loop some part of function base on widget.menuItem.category.length, I am new in flutter. Here is my current code : _buildContentView({BuildContext context}) { return Column( crossAxisAlignment: CrossAxisAlignment.stretch, children: <Widget>[ _buildMenuItemImage(), Container( child: Text(widget.menuItem.name, style: TextStyle(fontSize: 18, fontWeight: FontWeight.bold)),…

VIEW QUESTION

laravel foreach loop with 2k and get relation from 200k tack long long time

i have this model called Product and i have model called Note_voucher_line and this is relation inside product public function get_note_voucher_lines() { return $this->hasMany('AppModelsNote_voucher_line','product_id','id')->orderBy('date','asc')->orderBy('note_voucher_id','asc'); } now sometimes i have to loop products like this code $products = Product::whereBetween('id',[$num1,$num2])->get(); foreach($products as…

VIEW QUESTION

Php – Foreach Looping

Please advise me for best way to loop this data. I have data in my database like this $data = [ ['id' => 1, 'name' => 'Category A', 'parent_id' => null], ['id' => 2, 'name' => 'Subcategory A.1', 'parent_id' =>…

VIEW QUESTION
Back To Top
Search