Initially collapsed description

This commit is contained in:
Your Name 2026-02-11 08:45:56 +01:00
parent 2493c5b4be
commit 034f87945f
3 changed files with 8 additions and 7 deletions

View file

@ -11,11 +11,12 @@
- See `./Makefile` for more examples.
# Workflow
- One feature at a time
- Create a git branch for each new feature
- After making changes, and before consider the feature is implemented
# MANDATORY WORKFLOW
1. Only one TODO.md feature at a time
2. Create a git branch for each new feature
3. After making any change
- Allways pass all the tests and integration tests
- Build the application for linux and web-server
- Launch the apllication for web-server, with a timeout of 60s
- Dont merge the feature branch into master, the work will be reviewed by a human.
4. If any test or build or web-server launch fails, go to step 3
5. Dont merge the feature branch into master, the work will be reviewed by a human.

View file

@ -41,7 +41,7 @@ Newton's law of universal gravitation
\(F = G\frac{m_1m_2}{r^2}\)
Where:
- $G$: Gravitational constant ($6.674\times 10^{-11}\ \mathrm{N\cdot m^2/kg^2}$)
- $G$: Gravitational constant $6.674\times 10^{-11}\ \mathrm{N\cdot m^2/kg^2}$
- $m_1, m_2$: Masses of two objects
- $r$: Distance between centers of masses

View file

@ -65,7 +65,7 @@ class _FormulaScreenState extends State<FormulaScreen> {
final Map<String, String?> _selectedValues = {}; // for string dropdowns
String? _result;
String? _selectedOutputUnit;
bool _isDescriptionExpanded = true; // Track description expansion state
bool _isDescriptionExpanded = false; // Track description expansion state
@override
void initState() {