Sobes.tech
Junior — Middle

Describe the main commands and tasks you performed at previous jobs.

sobes.tech AI

Answer from AI

In my previous roles with Flutter, I performed the following main tasks:

  • Developing user interfaces using Flutter widgets, including custom components.
  • Integrating with REST APIs for data retrieval and submission.
  • Managing application state with Provider and Bloc.
  • Optimizing performance and fixing bugs.
  • Working with navigation between screens and routing.
  • Testing UI and business logic using Flutter tests.

An example of a simple command to run the application:

flutter run

And an example of code to create a button with a handler:

ElevatedButton(
  onPressed: () {
    print('Button pressed');
  },
  child: Text('Press me'),
)