You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
ansu_ui/example/lib/common/code_tile.dart

29 lines
614 B

import 'package:flutter/material.dart';
import 'package:get/get.dart';
import 'code_view.dart';
class CodeTile extends StatelessWidget {
final Widget title;
final Widget subTitle;
final CodeBuilder builder;
const CodeTile({Key key, this.title, this.subTitle, this.builder})
: super(key: key);
@override
Widget build(BuildContext context) {
return ListTile(
title: title,
subtitle: subTitle,
trailing: IconButton(
icon: Icon(Icons.code),
onPressed: () => Get.to(
CodeView(
text: builder,
),
),
),
);
}
}