Skip to content
View StanislawNagorski's full-sized avatar
Block or Report

Block or report StanislawNagorski

Block user

Prevent this user from interacting with your repositories and sending you notifications. Learn more about blocking users.

You must be logged in to block users.

Please don't include any personal information such as legal names or email addresses. Maximum 100 characters, markdown supported. This note will be visible to only you.
Report abuse

Contact GitHub support about this user’s behavior. Learn more about reporting abuse.

Report abuse
StanislawNagorski/README.md

Anurag's GitHub stats

Hi there 👋

I`m full of positive energy, passionate about sport and technology.

  • 🔭 My main job is Software Development Manager in Decathlon Poland.
  • 👨‍💻 I also work part-time (3/4) as Flutter Developer at Codigee.
  • 📫 You can reach me by Linkedin/StanislawNagorski.
  • ⚡ While AFK: I`m 🤺 fencing trainer and 🏋️‍♂️ weight training lover

Pinned Loading

  1. Button with 3 states: ON, OFF, DISABLE Button with 3 states: ON, OFF, DISABLE
    1
    import 'package:flutter/material.dart';
    2
    import 'package:flutter_hooks/flutter_hooks.dart';
    3
    
                  
    4
    import '../presentation/values/values.dart';
    5
    
                  
  2. enums_on_duty_to_clean_presentation enums_on_duty_to_clean_presentation
    1
    enum Game {
    2
      tekken(
    3
        nameTranslationKey: SKeys.game_name_tekken,
    4
        gameSize: GameSize.large,
    5
        iconPath: AppImages.gameLogoTekken,
  3. mock remote data source mock remote data source
    1
    const String _mockDataJson = 'assets/mock_data/events_spots_localization_mock_data.json';
    2
    const int _mockCallMillisecondsDuration = 500;
    3
    
                  
    4
    @Injectable(
    5
      as: RemoteDataSourceMock,
  4. app_life_cycle_widget_wrapper.dart app_life_cycle_widget_wrapper.dart
    1
    import 'dart:developer';
    2
    import 'package:flutter/widgets.dart';
    3
    
                  
    4
    
                  
    5
    class AppLifeCycleWidgetWrapper extends StatefulWidget {