import 'package:flutter/material.dart'; class ItemTitleSetting extends StatelessWidget { const ItemTitleSetting({ Key key, this.title, }) : super(key: key); final String title; @override Widget build(BuildContext context) { return Padding( padding: const EdgeInsets.all(16), child: Row( mainAxisAlignment: MainAxisAlignment.spaceBetween, children: [ Text( title, style: TextStyle( fontSize: 18, color: Colors.black, ), ), Icon( Icons.arrow_forward_ios_rounded, color: Colors.black, ) ], ), ); } }