# yl_extension **Repository Path**: breakfly/yl_extension ## Basic Information - **Project Name**: yl_extension - **Description**: No description available - **Primary Language**: Unknown - **License**: Not specified - **Default Branch**: main - **Homepage**: None - **GVP Project**: No ## Statistics - **Stars**: 1 - **Forks**: 0 - **Created**: 2024-01-17 - **Last Updated**: 2024-01-17 ## Categories & Tags **Categories**: Uncategorized **Tags**: Flutter, Dart ## README ### 添加 yl_extension: git: https://gitee.com/breakfly/yl_extension.git 使用 import 'package:yl_extension/yl_extension.dart'; ### 使用说明 扩展类使用 #### Widget removeAll(centext) listview 移除默认的padding effectGesture 给widget添加点击时间 可以开始防连点功能 默认防连点关闭 #### String 保留几位小数 '10.05'.keepFractionDigits(1) // 10.1 '10.05'.keepFractionDigits(1,round:false) // 10.0 保留几位小数 省略末尾0 '10.05'.keepShortDigits(1) // 10.1 '10.05'.keepShortDigits(1,round:false) // 10 '12345678901'. isPhone()//false '17700000001'. isPhone()//true