Skip to content

Commit

Permalink
chore(app): remove TODOs
Browse files Browse the repository at this point in the history
  • Loading branch information
tamslo committed Sep 17, 2024
1 parent bd8b232 commit dc6e6cf
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 10 deletions.
12 changes: 3 additions & 9 deletions app/lib/common/widgets/drug_search/builder.dart
Original file line number Diff line number Diff line change
Expand Up @@ -39,15 +39,9 @@ class DrugSearch extends HookWidget {
right: PharMeTheme.smallSpace,
bottom: PharMeTheme.smallSpace,
),
// TODO: why row in column? try only column
child: Column(
crossAxisAlignment: CrossAxisAlignment.start,
children: [
Row(
crossAxisAlignment: CrossAxisAlignment.center,
children: _buildSearchBarItems(context, searchController),
),
],
child: Row(
crossAxisAlignment: CrossAxisAlignment.center,
children: _buildSearchBarItems(context, searchController),
),
),
DrugList(
Expand Down
1 change: 0 additions & 1 deletion app/lib/common/widgets/drug_search/drug_filters.dart
Original file line number Diff line number Diff line change
Expand Up @@ -192,7 +192,6 @@ class DrugFilters extends StatelessWidget {
if (enableIndicator && _showActiveIndicator()) _buildActiveIndicator(),
],
),
// TODO: test if greyed out if null
color: PharMeTheme.iconColor,
);
}
Expand Down

0 comments on commit dc6e6cf

Please sign in to comment.