mirror of
https://github.com/nisrulz/flutter-examples.git
synced 2025-07-06 10:47:44 +08:00
23 lines
457 B
Dart
23 lines
457 B
Dart
import 'package:flutter/material.dart';
|
|
|
|
ListTile getListTile(icon, iconColor, titleText, context) {
|
|
return new ListTile(
|
|
leading: new Container(
|
|
width: 4.0,
|
|
child: Icon(
|
|
icon,
|
|
color: iconColor,
|
|
size: 24.0,
|
|
),
|
|
),
|
|
title: new Text(
|
|
titleText,
|
|
style: TextStyle(
|
|
fontSize: 14.0,
|
|
fontWeight: FontWeight.w700,
|
|
),
|
|
),
|
|
onTap: () => Navigator.of(context).pop(),
|
|
);
|
|
}
|