| 
				
			 | 
			
			
				@@ -20,6 +20,7 @@ public class Screen extends JsonObject implements Serializable { 
			 | 
		
	
		
			
			| 
				20
			 | 
			
				20
			 | 
			
			
				  
			 | 
		
	
		
			
			| 
				21
			 | 
			
				21
			 | 
			
			
				     private static final String KEY_TITLE = "title"; 
			 | 
		
	
		
			
			| 
				22
			 | 
			
				22
			 | 
			
			
				     private static final String KEY_SCREEN = "screen"; 
			 | 
		
	
		
			
			| 
				
			 | 
			
				23
			 | 
			
			
				+    private static final String KEY_LABEL = "label"; 
			 | 
		
	
		
			
			| 
				23
			 | 
			
				24
			 | 
			
			
				     public static final String KEY_SCREEN_INSTANCE_ID = "screenInstanceID"; 
			 | 
		
	
		
			
			| 
				24
			 | 
			
				25
			 | 
			
			
				     public static final String KEY_NAVIGATOR_ID = "navigatorID"; 
			 | 
		
	
		
			
			| 
				25
			 | 
			
				26
			 | 
			
			
				     public static final String KEY_NAVIGATOR_EVENT_ID = "navigatorEventID"; 
			 | 
		
	
	
		
			
			| 
				
			 | 
			
			
				@@ -36,6 +37,7 @@ public class Screen extends JsonObject implements Serializable { 
			 | 
		
	
		
			
			| 
				36
			 | 
			
				37
			 | 
			
			
				     private static final String KEY_TAB_INDICATOR_COLOR = "tabIndicatorColor"; 
			 | 
		
	
		
			
			| 
				37
			 | 
			
				38
			 | 
			
			
				  
			 | 
		
	
		
			
			| 
				38
			 | 
			
				39
			 | 
			
			
				     public String title; 
			 | 
		
	
		
			
			| 
				
			 | 
			
				40
			 | 
			
			
				+    public String label; 
			 | 
		
	
		
			
			| 
				39
			 | 
			
				41
			 | 
			
			
				     public String screenId; 
			 | 
		
	
		
			
			| 
				40
			 | 
			
				42
			 | 
			
			
				     public String screenInstanceId; 
			 | 
		
	
		
			
			| 
				41
			 | 
			
				43
			 | 
			
			
				     public String navigatorId; 
			 | 
		
	
	
		
			
			| 
				
			 | 
			
			
				@@ -60,6 +62,7 @@ public class Screen extends JsonObject implements Serializable { 
			 | 
		
	
		
			
			| 
				60
			 | 
			
				62
			 | 
			
			
				  
			 | 
		
	
		
			
			| 
				61
			 | 
			
				63
			 | 
			
			
				     public Screen(ReadableMap screen) { 
			 | 
		
	
		
			
			| 
				62
			 | 
			
				64
			 | 
			
			
				         title = getString(screen, KEY_TITLE); 
			 | 
		
	
		
			
			| 
				
			 | 
			
				65
			 | 
			
			
				+        label = getString(screen, KEY_LABEL); 
			 | 
		
	
		
			
			| 
				63
			 | 
			
				66
			 | 
			
			
				         screenId = getString(screen, KEY_SCREEN); 
			 | 
		
	
		
			
			| 
				64
			 | 
			
				67
			 | 
			
			
				         screenInstanceId = getString(screen, KEY_SCREEN_INSTANCE_ID); 
			 | 
		
	
		
			
			| 
				65
			 | 
			
				68
			 | 
			
			
				         navigatorId = getString(screen, KEY_NAVIGATOR_ID); 
			 |