csabag

Results 7 comments of csabag

Hi Phil, I myself had a bit of a struggle with this too. This is what ended up working for me: 1. downgrade node to v10.21.0 2. run npm audit...

If you use nvm (node version manager) you can have multiple versions of node installed side by side and easily switch between versions. nvm install v10.21.0 nvm ls - shows...

I just realized that this might be solved by buying the node-sass version number higher. There could be a newer version which is compatible with the node version you have...

I made a stab at the window size & position problem. My approach was to create two separate controls in settings/behaviour tab. 1. window size preference with a simple text...

> yea i'm pretty sure choice of max token affects the output. shorter makes it try to end sooner. this is feature not a bug I found this [openai community...

This worked for me... The only thing I couldn't do is to change the extra top and bottom padding though. ``` Container( decoration: ShapeDecoration( color: Colors.black, shape: RoundedRectangleBorder( side: BorderSide(width:...

``` Container( decoration: ShapeDecoration( color: Colors.black, shape: RoundedRectangleBorder( side: BorderSide(width: 1, style: BorderStyle.solid, color: Colors.black), borderRadius: BorderRadius.all(Radius.circular(8)), ), ), child: SearchableDropdown.single( items: dropdownCityListItems, value: selectedValue, iconEnabledColor: AppColors.GREEN_COLOR, hint: Padding( padding:...