Vous ne pouvez pas sélectionner plus de 25 sujets
			Les noms de sujets doivent commencer par une lettre ou un nombre, peuvent contenir des tirets ('-') et peuvent comporter jusqu'à 35 caractères.
		
		
		
		
		
			
	
	
		
			
				
					
						
						
							| 123456789101112131415161718 | 
							- // @flow
 - 
 - import { type StyleType } from './functions.any';
 - 
 - export * from './functions.any';
 - 
 - /**
 -  * Fixes the style prop that is passed to a platform generic component based on platform specific
 -  * format requirements.
 -  *
 -  * @param {StyleType} style - The passed style prop to the component.
 -  * @returns {StyleType}
 -  */
 - export function getFixedPlatformStyle(style: StyleType): StyleType {
 -     // There is nothing to do on mobile - yet.
 - 
 -     return style;
 - }
 
 
  |