Debugging Electron.
Communication between the Main Process and rendering Processes.
- Identify problems
- Create solutions
- Use CSS to create user interfaces
- Implement communication between main and rendering processes
- CSS and UI issues
- forms elements
- Electron Options
- Size of Window
- Saving data
- What is the main process?
- What is the rendering process?
- Creating communication between the two
Use Grid for two dimensional layouts and Flexbox for arranging things on a single axis.
Both are applied to a parent container and affect the children.
You can use Flex box inside a grid or one grid within another grid.
-
Use Grid for two dimensional layouts.
-
Use
grid-template-area
for arbitrary layouts usegrid-template-columns
for dynamic content. -
Use Flexbox for one dimensional layout
-
Use think in terms of main axis and cross axis
- Wrap up the Electron project. You should have a functional Electron application that runs on the desktop.