Initially collapsed description
This commit is contained in:
parent
2493c5b4be
commit
034f87945f
3 changed files with 8 additions and 7 deletions
11
CLAUDE.md
11
CLAUDE.md
|
|
@ -11,11 +11,12 @@
|
||||||
- See `./Makefile` for more examples.
|
- See `./Makefile` for more examples.
|
||||||
|
|
||||||
|
|
||||||
# Workflow
|
# MANDATORY WORKFLOW
|
||||||
- One feature at a time
|
1. Only one TODO.md feature at a time
|
||||||
- Create a git branch for each new feature
|
2. Create a git branch for each new feature
|
||||||
- After making changes, and before consider the feature is implemented
|
3. After making any change
|
||||||
- Allways pass all the tests and integration tests
|
- Allways pass all the tests and integration tests
|
||||||
- Build the application for linux and web-server
|
- Build the application for linux and web-server
|
||||||
- Launch the apllication for web-server, with a timeout of 60s
|
- 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.
|
||||||
|
|
|
||||||
|
|
@ -41,7 +41,7 @@ Newton's law of universal gravitation
|
||||||
\(F = G\frac{m_1m_2}{r^2}\)
|
\(F = G\frac{m_1m_2}{r^2}\)
|
||||||
|
|
||||||
Where:
|
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
|
- $m_1, m_2$: Masses of two objects
|
||||||
- $r$: Distance between centers of masses
|
- $r$: Distance between centers of masses
|
||||||
|
|
||||||
|
|
|
||||||
|
|
@ -65,7 +65,7 @@ class _FormulaScreenState extends State<FormulaScreen> {
|
||||||
final Map<String, String?> _selectedValues = {}; // for string dropdowns
|
final Map<String, String?> _selectedValues = {}; // for string dropdowns
|
||||||
String? _result;
|
String? _result;
|
||||||
String? _selectedOutputUnit;
|
String? _selectedOutputUnit;
|
||||||
bool _isDescriptionExpanded = true; // Track description expansion state
|
bool _isDescriptionExpanded = false; // Track description expansion state
|
||||||
|
|
||||||
@override
|
@override
|
||||||
void initState() {
|
void initState() {
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue