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.
28 lines
672 B
28 lines
672 B
4 years ago
|
import 'package:ansu_ui/ansu_ui.dart';
|
||
|
import 'package:flutter/material.dart';
|
||
|
|
||
|
class ExampleStringExt extends StatefulWidget {
|
||
|
ExampleStringExt({Key key}) : super(key: key);
|
||
|
|
||
|
@override
|
||
|
_ExampleStringExtState createState() => _ExampleStringExtState();
|
||
|
}
|
||
|
|
||
|
class _ExampleStringExtState extends State<ExampleStringExt> {
|
||
|
@override
|
||
|
Widget build(BuildContext context) {
|
||
|
return ASScaffold(
|
||
|
title: 'String Ext',
|
||
|
body: ListView(
|
||
|
children: [
|
||
|
ListTile(
|
||
|
leading: Chip(label: Text('.phone')),
|
||
|
title: Text('18888888888'),
|
||
|
subtitle: Text('18888888888'.phone),
|
||
|
),
|
||
|
],
|
||
|
),
|
||
|
);
|
||
|
}
|
||
|
}
|