Flutter Word Game features/game/presentation/bloc/game_state.dart
enum GameStatus{ initial, loading, inProgress, win, loss, error,}class GameState{ final GameStatus status; final String? errorMessage; final List? attempts; final String? currentAttempt; final String? word; final int? attemptsCount; GameState._( {required this.status, this.errorMessage, this.attempts, this.currentAttempt, this.word, this.attemptsCount})..
- 1인 게임 개발자 나령윤기도[Unity, Flutter]
- · 2025. 10. 19.
Flutter Word Game features/game/presentation/bloc/game_event.dart
abstract class GameEvent{}class StartGameEvent extends GameEvent{ final int attemptsCount; final int wordLength; StartGameEvent({required this.attemptsCount, required this.wordLength});}class EnterAttemptEvent extends GameEvent{}class EnterKeyEvent extends GameEvent{}class DeleteKeyEvent extends GameEvent{}
- 1인 게임 개발자 나령윤기도[Unity, Flutter]
- · 2025. 10. 19.
Flutter Word Game main code
import 'package:flutter/material.dart';import 'package:wordgame/core/get_it/get_it.dart';import 'package:wordgame/core/router/app_router.dart';import 'package:wordgame/core/theme/app_theme.dart';void main() { WidgetsFlutterBinding.ensureInitialized(); setup(); runApp(MaterialApp.router( routerConfig: AppRouter.router, theme: AppTheme.getTheme(), ));}
- 1인 게임 개발자 나령윤기도[Unity, Flutter]
- · 2025. 10. 19.
Flutter 기본교육 - 부트캠프 - 1
import 'package:flutter/material.dart';void main() { runApp(MyApp());}class MyApp extends StatelessWidget { const MyApp({Key? key}) : super(key: key); @override Widget build(BuildContext context) { return MaterialApp( debugShowCheckedModeBanner: false, home: Scaffold( appBar: AppBar( backgroundColor: Colors.green, title: Center(child: const Text('Kido Fl..
- 1인 게임 개발자 나령윤기도[Unity, Flutter]
- · 2025. 10. 14.
Unity 인기많은 무료 에셋 검색 및 목록추가
처음으로 게임을 개발을 시작한다면 먼저 인기가 많은 무료 에셋도 많이 있습니다. 먼저 무료로 만들어 보고 멋진 게임을 개발하는 것도 좋을꺼라 생각합니다.그래서 오늘은 먼저 모바일에서 다운로드도 가능합니다. 이 프로젝트에는 위의 데모 버전에 제시된 모든 그래픽 이미지가 포함되어 있습니다.*4 등장인물*15개의 함정*12 타일셋 조합*기타 작은 요소(과일, 상자 등)데모를 재생하여 모든 애니메이션과 기능을 보세요.키보드의 화살표를 사용하여 왼쪽, 오른쪽으로 움직이고 점프하세요.오른쪽 상단 모서리에는 다양한 장면을 이동할 수 있는 버튼들이 있습니다.이 모든 요소를 결합하고 수정하여 자신만의 모험을 즐기세요. 내장된 렌더 파이프라인은 유니티의 기본 렌더 파이프라인입니다.맞춤화..
- 1인 게임 개발자 나령윤기도[Unity, Flutter]
- · 2025. 8. 11.