Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

feat(td_count_down): 添加正向计时功能 #246

Merged
merged 5 commits into from
Aug 2, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
9 changes: 4 additions & 5 deletions tdesign-component/example/lib/config.dart
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ import 'page/td_button_page.dart';
import 'page/td_cell_page.dart';
import 'page/td_checkbox_page.dart';
import 'page/td_collapse.dart';
import 'page/td_count_down_page.dart';
import 'page/td_time_counter_page.dart';
import 'page/td_date_picker_page.dart';
import 'page/td_dialog_page.dart';
import 'page/td_divider_page.dart';
Expand Down Expand Up @@ -158,10 +158,9 @@ Map<String, List<ExamplePageModel>> exampleMap = {
ExamplePageModel(
text: 'Cell 单元格', name: 'cell', pageBuilder: _wrapInheritedTheme((context) => const TDCellPage())),
ExamplePageModel(
text: 'CountDown 倒计时',
name: 'count-down',
pageName: 'count_down',
pageBuilder: _wrapInheritedTheme((context) => const TDCountDownPage())),
text: 'TimeCounter 计时器',
name: 'time-counter',
pageBuilder: _wrapInheritedTheme((context) => const TDTimeCounterPage())),
ExamplePageModel(
text: 'Collapse 折叠面板',
name: 'collapse',
Expand Down
Loading