Skip to content

Commit

Permalink
feat: price screen
Browse files Browse the repository at this point in the history
  • Loading branch information
AhsanRns committed May 8, 2024
1 parent a8ac51a commit 19e1594
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions evently/lib/evently_provider.dart
Original file line number Diff line number Diff line change
Expand Up @@ -10,11 +10,11 @@ class EventlyProvider extends ChangeNotifier {

Denom get selectedDenom => _selectedDenom;

List<Denom> supportedDenomList = [];
List<Denom> supportedDenomList = Denom.availableDenoms;

TextEditingController priceController = TextEditingController();

FreeDrop isFreeDrop = FreeDrop.unselected;
FreeDrop isFreeDrop = FreeDrop.no;

void setSelectedDenom(Denom value) {
_selectedDenom = value;
Expand Down
2 changes: 1 addition & 1 deletion evently/lib/widgets/evently_price_input_field.dart
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,7 @@ class EventlyPriceInputField extends StatelessWidget {
keyboardType: TextInputType.number,
inputFormatters: inputFormatters,
decoration: InputDecoration(
hintText: LocaleKeys.network_fee_listed_price_occur_on_chain.tr(),
hintText: "\$21.99",
hintStyle: TextStyle(fontSize: 15.sp, fontWeight: FontWeight.w400, color: EventlyAppTheme.kGrey),
border: const OutlineInputBorder(borderSide: BorderSide.none),
floatingLabelBehavior: FloatingLabelBehavior.always,
Expand Down

0 comments on commit 19e1594

Please sign in to comment.